Skip to content

Commit

Permalink
Add workflow for labeling new PRs as needs-triage (#10690)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschright authored Oct 31, 2019
1 parent c892a3d commit e5b7a8a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1.0.0
- name: Apply Triage Label
- name: Apply Issue Triage Label
uses: actions/github@v1.0.0
if: github.event.action == 'opened'
env:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: PR triage
on:
pull_request:
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: label needs-triage

0 comments on commit e5b7a8a

Please sign in to comment.