Skip to content

Commit 6d72bb2

Browse files
nickrobinson251RAI CI (GitHub Action Automation)
authored andcommitted
Add PR template and labels (#62)
labeler workflow fixes (#64) * Try fix labeler * Update labeler workflow triggers * fixup! Update labeler workflow triggers
1 parent 3461df4 commit 6d72bb2

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# See https://github.com/actions/labeler
2+
port-to-master: '**'
3+
port-to-v1.10: '**'
4+
port-to-v1.9: '**'

.github/pull_request_template.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!---
2+
PRs to RelationalAI/julia must be opened to the correct branch (see
3+
https://github.com/RelationalAI/raicode/blob/master/nix/julia-version.json).
4+
-->
5+
## PR Description
6+
7+
_What does this PR do?_
8+
9+
## Checklist
10+
11+
Requirements for merging:
12+
- [ ] I have opened an issue or PR upstream on JuliaLang/julia: <link to JuliaLang/julia>
13+
- [ ] I have removed the `port-to-*` labels that don't apply.

.github/workflows/labeler.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See https://github.com/actions/labeler
2+
name: "Pull Request Labeler"
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
8+
jobs:
9+
triage:
10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/labeler@v4
16+
with:
17+
dot: true

0 commit comments

Comments
 (0)