From a7326b8ef50b4658e2e086d744bb4b67915cd24b Mon Sep 17 00:00:00 2001 From: inbar-havdala Date: Thu, 30 Apr 2026 11:09:04 +0000 Subject: [PATCH] ci: add PR Monday Notifier GitHub Actions workflow --- .github/workflows/pr-monday-notifier.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pr-monday-notifier.yml diff --git a/.github/workflows/pr-monday-notifier.yml b/.github/workflows/pr-monday-notifier.yml new file mode 100644 index 0000000..363f9c2 --- /dev/null +++ b/.github/workflows/pr-monday-notifier.yml @@ -0,0 +1,17 @@ +--- +name: PR Monday Notifier + +on: + pull_request: + types: [opened, reopened, ready_for_review, edited, closed] + pull_request_review: + types: [submitted] + +jobs: + notify-monday: + uses: fiverr/github_workflows/.github/workflows/pr-monday-notifier.yml@master + secrets: + MONDAY_API_TOKEN: ${{ secrets.MONDAY_API_TOKEN }} + GITHUBOT_TOKEN: ${{ secrets.GITHUBOT_TOKEN }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} + DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}