Skip to content

Commit 9ea1788

Browse files
author
Brinden Carlson
committed
Add PR template
1 parent f6b3e37 commit 9ea1788

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

.github/pull_request_template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Description
2+
Please provide a detailed description of the changes this pull request introduces. If available, also link to a docdb link where the issue/change have been presented on/discussed.
3+
4+
- [X] Have you added a label? (bug/enhancement/physics etc.)
5+
- [X] Have you assigned at least 1 reviewer?
6+
- [X] Is this PR related to an open issue / project?
7+
- [X] Does this PR affect CAF data format? If so, please assign a CAF maintainer as additional reviewer.
8+
- [X] Does this PR require merging another PR in a different repository (such as sbnanobj/sbnobj etc.)? If so, please link it in the description.
9+
- [X] Are you submitting this PR on behalf of someone else who made the code changes? If so, please mention them in the description.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Auto Assign to Project(s)
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
pull_request:
7+
types: [labeled]
8+
env:
9+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10+
MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
11+
12+
jobs:
13+
assign_one_project:
14+
runs-on: ubuntu-latest
15+
name: Assign to One Project
16+
steps:
17+
- name: Assign issues and pull requests with `SBN-2020A_00` label to project 4
18+
uses: srggrs/assign-one-project-github-action@1.2.0
19+
if: |
20+
contains(github.event.issue.labels.*.name, 'SBN-2020A_00') ||
21+
contains(github.event.pull_request.labels.*.name, 'SBN-2020A_00')
22+
with:
23+
project: 'https://github.com/orgs/SBNSoftware/projects/4'
24+
column_name: 'To Do'

0 commit comments

Comments
 (0)