We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a92c6a commit ef1008fCopy full SHA for ef1008f
.github/workflows/pr_auto_merge.yml
@@ -10,6 +10,9 @@ jobs:
10
pull-requests: write
11
steps:
12
- uses: actions/checkout@v4
13
+ - name: Run step if actor is user_a, user_b, or user_c
14
+ if: github.actor == 'NadeemYaseen' || github.actor == 'user_b' || github.actor == 'user_c'
15
+ run: echo "Hello, the workflow was triggered by ${{ github.actor }}!
16
- name: Try auto approve
17
run: |
18
urls=$(gh pr list --json url | jq -r '.[].url')
0 commit comments