Skip to content

Commit

Permalink
chore: Added example workflow using action
Browse files Browse the repository at this point in the history
  • Loading branch information
BottlecapDave committed Jun 23, 2024
1 parent 99b0118 commit d7933fd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/action_test.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit d7933fd

Please sign in to comment.