Create auto-label.yml

Create automation to push labeled issues/PR directly to the hardware or software projects
This commit is contained in:
Romain Bazile 2020-09-17 11:29:37 +02:00 committed by GitHub
parent fd6167c50c
commit a664f9cc6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
.github/workflows/auto-label.yml vendored Normal file
View 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'