From 38f9f5e465bd9638e8ed2cd2e663cfc724880b8e Mon Sep 17 00:00:00 2001 From: Will Roden Date: Tue, 8 Aug 2023 12:05:22 -0500 Subject: [PATCH] Revert "rm labels.yaml" This reverts commit 1d4c17d2760f7decb797ba4e2c35752862e06299. --- .github/workflows/labels.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/labels.yaml diff --git a/.github/workflows/labels.yaml b/.github/workflows/labels.yaml new file mode 100644 index 0000000..c50301e --- /dev/null +++ b/.github/workflows/labels.yaml @@ -0,0 +1,21 @@ +name: labels +on: + pull_request: + types: + - synchronize + - opened + - reopened + - labeled + - unlabeled +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true +jobs: + label_check: + name: check labels + runs-on: ubuntu-22.04 + if: github.event_name == 'pull_request' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: WillAbides/release-train@v1.6.1