X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/.github/workflows/changelog.yml diff --git a/.vim/bundle/black/.github/workflows/changelog.yml b/.vim/bundle/black/.github/workflows/changelog.yml deleted file mode 100644 index a1804597..00000000 --- a/.vim/bundle/black/.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)