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 c892a3d commit e5b7a8aCopy full SHA for e5b7a8a
.github/workflows/issues.yml
@@ -5,7 +5,7 @@ jobs:
5
runs-on: ubuntu-latest
6
steps:
7
- uses: actions/checkout@v1.0.0
8
- - name: Apply Triage Label
+ - name: Apply Issue Triage Label
9
uses: actions/github@v1.0.0
10
if: github.event.action == 'opened'
11
env:
.github/workflows/pull_requests.yml
@@ -0,0 +1,15 @@
1
+name: PR triage
2
+on:
3
+ pull_request:
4
+ types: [opened]
+jobs:
+ markPRsForTriage:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1.0.0
+ - name: Apply PR Triage Label
+ uses: actions/github@v1.0.0
12
+ env:
13
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14
+ with:
15
+ args: label needs-triage
0 commit comments