We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5ea2b commit 67520d9Copy full SHA for 67520d9
.github/auto_assign.yml
@@ -0,0 +1,8 @@
1
+# GitHub:
2
+# https://github.com/kentaro-m/auto-assign-action
3
+
4
+# Set addAssignees to 'author' to set the PR creator as the assignee.
5
+addAssignees: author
6
7
+# Run for all PRs
8
+runOnDraft: true
.github/labeler.yml
@@ -1,2 +1,5 @@
+# https://github.com/actions/labeler
code-challenge:
- any: ["src/**/*.ts"]
.github/workflows/auto_assign.yml
@@ -0,0 +1,18 @@
+name: "Auto Assign Action"
+on:
+ - pull_request_target
+jobs:
+ triage:
+ name: "Auto Assign"
9
+ permissions:
10
+ contents: read
11
+ pull-requests: write
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: kentaro-m/[email protected]
17
+ with:
18
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments