Is the file .github/labels.yml an attempt to add the ghaction-github-labeler auto labels generator Action ?
If so, I will add the following file .github/githublabeler.yml:
name: "Github Labeler"
on:
push:
branches:
- 'main'
paths:
- '.github/labels.yml'
- '.github/workflows/githublabeler.yml'
jobs:
labeler:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run Labeler
if: success()
uses: crazy-max/ghaction-github-labeler@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
skip-delete: false
dry-run: false
exclude: |
help*
*issue
Is the file
.github/labels.ymlan attempt to add the ghaction-github-labeler auto labels generator Action ?If so, I will add the following file
.github/githublabeler.yml: