diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..a7f5d32 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,18 @@ +name: Release Drafter + +on: + push: + branches: + - main + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5 + with: + name: "cachecontrol $RESOLVED_VERSION" + config-name: release-drafts/increasing-minor-version.yml # located in .github/ in the default branch within this or the .github repo + commitish: ${{ env.GITHUB_REF_NAME }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}