X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/882d8795c6ff65c02f2657e596391748d1b6b7f5:/.github/workflows/changelog.yml..HEAD:/.vim/bundle/black/.github/workflows/static/git-logo.png diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml deleted file mode 100644 index a180459..0000000 --- a/.github/workflows/changelog.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: changelog - -on: - pull_request: - types: [opened, synchronize, labeled, unlabeled, reopened] - -permissions: - contents: read - -jobs: - build: - name: Changelog Entry Check - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Grep CHANGES.md for PR number - if: contains(github.event.pull_request.labels.*.name, 'skip news') != true - run: | - grep -Pz "\((\n\s*)?#${{ github.event.pull_request.number }}(\n\s*)?\)" CHANGES.md || \ - (echo "Please add '(#${{ github.event.pull_request.number }})' change line to CHANGES.md (or if appropriate, ask a maintainer to add the 'skip news' label)" && \ - exit 1)