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 6ad1de0 commit 94fa995Copy full SHA for 94fa995
.github/workflows/auto-assignee.yml
@@ -0,0 +1,23 @@
1
+name: Shared Workflow- Auto Assign PRs
2
+
3
+on:
4
+ workflow_call:
5
+ inputs:
6
+ assignees:
7
+ description: 'A list of assignees(GitHub user name) to be added to PR'
8
+ required: true
9
+ type: string
10
11
+ secrets:
12
+ GITHUB:
13
+ description: 'Your GitHub token for authentication.'
14
15
16
+jobs:
17
+ assign-pr:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: wow-actions/auto-assign@v3
21
+ with:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB }}
23
+ assignees: ${{ inputs.assignees }}
0 commit comments