From: Sebastián Ramírez Date: Tue, 13 Aug 2024 04:54:14 +0000 (-0500) Subject: 👷 Add label checker GitHub Action (#12004) X-Git-Tag: 0.112.1~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c89533254ec58785dc9f6ea0489372bafb3e8089;p=thirdparty%2Ffastapi%2Ffastapi.git 👷 Add label checker GitHub Action (#12004) --- diff --git a/.github/workflows/label-checker.yml b/.github/workflows/label-checker.yml new file mode 100644 index 0000000000..20e9704cb9 --- /dev/null +++ b/.github/workflows/label-checker.yml @@ -0,0 +1,19 @@ +name: Label Checker +on: + pull_request: + types: + - opened + - synchronize + - reopened + - labeled + - unlabeled + +jobs: + check_labels: + name: Check labels + runs-on: ubuntu-latest + steps: + - uses: docker://agilepathway/pull-request-label-checker:latest + with: + one_of: breaking,security,feature,bug,refactor,upgrade,docs,lang-all,internal + repo_token: ${{ secrets.GITHUB_TOKEN }}