From daad74dc8dd706b5e866383e853e65fe266e84c4 Mon Sep 17 00:00:00 2001 From: "W. Augusto Andreoli" Date: Fri, 24 Mar 2023 09:10:40 +0100 Subject: [PATCH] ci: remove Snyk release notes preview It blocks Renovate's automerge because it waits for manual confirmation on a PR comment. The release notes are also not similar to the ones generated by semantic-release. --- .github/workflows/release-notes.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/release-notes.yaml diff --git a/.github/workflows/release-notes.yaml b/.github/workflows/release-notes.yaml deleted file mode 100644 index ae978e8d..00000000 --- a/.github/workflows/release-notes.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# https://github.com/marketplace/actions/release-notes-preview -name: Release-Notes-Preview - -on: - pull_request: - branches: [develop] - issue_comment: - types: [edited] - -jobs: - preview: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: | - git fetch --prune --unshallow --tags - - uses: snyk/release-notes-preview@v1.6.2 - with: - releaseBranch: develop - env: - GITHUB_PR_USERNAME: ${{ github.actor }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}