forked from hashicorp/terraform-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (22 loc) · 829 Bytes
/
issues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
on:
issues:
types: [opened]
name: Issue triage
jobs:
markIssuesForTriage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Apply Issue needs-triage Label
if: github.event.action == 'opened' && !contains(fromJSON('["anGie44", "bflad", "bill-rich", "breathingdust", "DrFaust92", "ewbankkit", "gdavison", "maryelizbeth", "YakDriver"]'), github.actor)
uses: github/issue-labeler@v2.4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler-issue-needs-triage.yml
enable-versioned-regex: 0
- name: Apply Issue Triage Labels
uses: github/issue-labeler@v2.4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler-issue-triage.yml
enable-versioned-regex: 0