Label workflow

This commit is contained in:
Janne Valkealahti
2022-06-01 08:41:35 +01:00
parent 7201a25567
commit c2774b9d8f
2 changed files with 136 additions and 0 deletions

23
.github/workflows/label-manage.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Labels Manage
on:
push:
branches:
- 'main'
paths:
- '.github/labels-manage.yml'
- '.github/workflows/label-manage.yml'
workflow_dispatch:
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Mangle Labels
uses: crazy-max/ghaction-github-labeler@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels-manage.yml
dry-run: false
skip-delete: true