From d7933fdcd0a0ef77deebcb79276b35ca7133c165 Mon Sep 17 00:00:00 2001 From: BottlecapDave Date: Sun, 23 Jun 2024 10:05:40 +0100 Subject: [PATCH] chore: Added example workflow using action --- .github/workflows/action_test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/action_test.yml diff --git a/.github/workflows/action_test.yml b/.github/workflows/action_test.yml new file mode 100644 index 0000000..f6c2f9e --- /dev/null +++ b/.github/workflows/action_test.yml @@ -0,0 +1,18 @@ +name: Action Test +on: + workflow_dispatch: + +jobs: + pull-request-reminder: + runs-on: ubuntu-latest + steps: + - name: Pull request reminder + uses: bottlecapdave/github-pull-request-reminder@v1 + with: + github-access-token: ${{ secrets.GITHUB_TOKEN }} + github-repos: ${{ github.repository }} + include-wip: 'true' + include-draft: 'true' + mandatory-labels: 'test-label-1,test-label-2' + slack-webhook-url: ${{ secrets.TEST_SLACK_WEBHOOK_URL }} +