From c526d523726be8d255ec622fcb115780ece02245 Mon Sep 17 00:00:00 2001 From: "Krishna .V" <82432122+EzioPearce@users.noreply.github.com> Date: Tue, 31 Jan 2023 11:27:53 +0530 Subject: [PATCH] Delete verify-release-notes.yml --- .github/workflows/verify-release-notes.yml | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/verify-release-notes.yml diff --git a/.github/workflows/verify-release-notes.yml b/.github/workflows/verify-release-notes.yml deleted file mode 100644 index f4901364489..00000000000 --- a/.github/workflows/verify-release-notes.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Verify Release Notes - -on: - pull_request: - branches: - - main - types: [opened, synchronize, reopened, labeled] - -jobs: - verify-release-notes: - name: Verify Release Notes - runs-on: ubuntu-latest - steps: - # We *only* need to check out the .github/ directory. - # The verify RELEASE_NOTES script uses the GitHub API to verify that RELEASE_NOTES was - # modified. - - name: Check out action - uses: Bhacaz/checkout-files@73e17cfbe8d7e0c6b2672b20cb05a718e20d18d4 - with: - files: .github - token: ${{ secrets.GITHUB_TOKEN }} - - name: Verify release notes - uses: ./.github/actions/verify-release-notes - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - pull-request-number: ${{ github.event.pull_request.number }}