set up release-please github action #2
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
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 }} |