File tree 3 files changed +34
-0
lines changed
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Add 'helper-ui' to any changes within 'helper' folder or any subfolders
2
+ helper-ui :
3
+ - helper/**/*
4
+
5
+ # Add 'test' label to any change to *.spec.js files
6
+ test :
7
+ - ' *.spec.js'
8
+
9
+ # Add 'documentation' label to any change to *.md files
10
+ documentation :
11
+ - ' *.md'
Original file line number Diff line number Diff line change
1
+ # This workflow will triage pull requests and apply a label based on the
2
+ # paths that are modified in the pull request.
3
+ #
4
+ # To use this workflow, you will need to set up a .github/labeler.yml
5
+ # file with configuration. For more information, see:
6
+ # https://github.com/actions/labeler
7
+
8
+ name : Labeler
9
+ on : [pull_request]
10
+
11
+ jobs :
12
+ label :
13
+
14
+ runs-on : ubuntu-latest
15
+ permissions :
16
+ contents : read
17
+ pull-requests : write
18
+
19
+ steps :
20
+ - uses : actions/labeler@v2
21
+ with :
22
+ repo-token : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Various workflows run on Push / PR / Schedule.
15
15
| Bicep Build | Every Push | ` Quality ` To run the bicep linter upon changes to the bicep files |
16
16
| Greetings | Issue / PR | ` Community ` Greeting new contributors to the repo |
17
17
| Stale bot | Issue / PR | ` Tidy ` Marks old issues as stale |
18
+ | Labeler | PR | ` Tidy ` Adds relevant labels to PR's based on files changed |
18
19
| Publish Helper | PR | ` Quality ` Tests changes to the UI work |
19
20
| Publish Helper | Push ` main ` | Publishes the UI to GitHub Pages |
20
21
| Check Markdown | PR | ` Quality ` Checks markdown files for spelling mistakes |
You can’t perform that action at this time.
0 commit comments