Skip to content

Merge pull request #7 from beqqrry-aws/fix-label-actions #74

Merge pull request #7 from beqqrry-aws/fix-label-actions

Merge pull request #7 from beqqrry-aws/fix-label-actions #74

Workflow file for this run

name: "Lint Labels"
on:
workflow_dispatch:
push:
branches:
- main
jobs:
label-linter:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
# The Audit Labels workflow creates, renames, updates
# or deletes labels based on a list of allowed labels.
#
# To use this workflow, you must set up and configure
# labels in a .github/allowed-labels.yml file
#
# For more information, see:
# https://github.com/crazy-max/ghaction-github-labeler
-
name: Audit Labels
if: success()
uses: crazy-max/ghaction-github-labeler@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/allowed-labels.yml
skip-delete: false
dry-run: false