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.
2 parents ea65c8f + 2813bc7 commit b7c3e80Copy full SHA for b7c3e80
.github/workflows/pr_assignee.yml
@@ -0,0 +1,19 @@
1
+name: Assign PR to creator
2
+
3
+# Due to GitHub token limitation, only able to assign org members not authors from forks.
4
+# https://github.com/thomaseizinger/assign-pr-creator-action/issues/3
5
6
+on:
7
+ pull_request:
8
+ types: [opened]
9
+ branches-ignore:
10
+ - l10n_dev
11
12
+jobs:
13
+ automation:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Assign PR to creator
17
+ uses: thomaseizinger/[email protected]
18
+ with:
19
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments