Create auto-label.yml
Create automation to push labeled issues/PR directly to the hardware or software projects
This commit is contained in:
parent
fd6167c50c
commit
a664f9cc6a
32
.github/workflows/auto-label.yml
vendored
Normal file
32
.github/workflows/auto-label.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Auto Assign to Projects based on software/hardware label
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [labeled]
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
jobs:
|
||||
assign_one_project:
|
||||
runs-on: ubuntu-latest
|
||||
name: Assign to projects based on label
|
||||
steps:
|
||||
- name: Assign issues and pull requests with `hardware` label to project `Hardware`
|
||||
uses: srggrs/assign-one-project-github-action@1.2.0
|
||||
if: |
|
||||
contains(github.event.issue.labels.*.name, 'hardware') ||
|
||||
contains(github.event.pull_request.labels.*.name, 'hardware')
|
||||
with:
|
||||
project: 'https://github.com/PlanktonPlanet/PlanktonScope/projects/2'
|
||||
column_name: 'Bugs'
|
||||
|
||||
- name: Assign issues and pull requests with `software` label to project `Sofware`
|
||||
uses: srggrs/assign-one-project-github-action@1.2.0
|
||||
if: |
|
||||
contains(github.event.issue.labels.*.name, 'bug') ||
|
||||
contains(github.event.pull_request.labels.*.name, 'bug')
|
||||
with:
|
||||
project: 'https://github.com/PlanktonPlanet/PlanktonScope/projects/1'
|
||||
column_name: 'To Do'
|
Loading…
Reference in a new issue