-
Notifications
You must be signed in to change notification settings - Fork 87
35 lines (28 loc) · 1.01 KB
/
issue-labeler.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# NOTE: This is a common file that is overwritten by realm/ci-actions sync service
# and should only be modified in that repository.
# See configuration in .github/advanced-issue-labeler.yml
name: Issue labeler (policy)
on:
issues:
types: [ opened ]
jobs:
label-issues-policy:
runs-on: ubuntu-latest
permissions:
issues: write
strategy:
matrix:
template: [ bug.yml, feature.yml ]
steps:
- uses: actions/checkout@v3
- name: Parse issue form
uses: stefanbuck/github-issue-parser@c1a559d78bfb8dd05216dab9ffd2b91082ff5324 # v3.0.1
id: issue-parser
with:
template-path: .github/ISSUE_TEMPLATE/${{ matrix.template }}
- name: Set labels based on policy
uses: redhat-plumbers-in-action/advanced-issue-labeler@6ee6fddfd744ee26b977e6a0436916f256896971 # v2.0.3
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
template: ${{ matrix.template }}
token: ${{ secrets.GITHUB_TOKEN }}