-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: add issues to project | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-project: | ||
name: add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: register bug/needs-triage with bug tracker project | ||
uses: actions/add-to-project@v0.5.0 | ||
with: | ||
project-url: https://github.com/orgs/varfish-org/projects/3 | ||
github-token: ${{ secrets.BOT_TOKEN }} | ||
labeled: bug, needs-triage | ||
label-operator: OR | ||
|
||
- name: register bug/enhancement issues with release planning project | ||
uses: actions/add-to-project@v0.5.0 | ||
with: | ||
project-url: https://github.com/orgs/varfish-org/projects/2 | ||
labeled: bug, needs-triage, enhancement | ||
label-operator: OR | ||
github-token: ${{ secrets.BOT_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: add needs-review pull requests to projects | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add pull request to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: register pull requests with release planning project | ||
uses: actions/add-to-project@v0.5.0 | ||
with: | ||
project-url: https://github.com/orgs/varfish-org/projects/2 | ||
github-token: ${{ secrets.BOT_TOKEN }} | ||
labeled: needs-review |