From 2b6fd61a1f1071bd2d5ca1786e91608639e667ae Mon Sep 17 00:00:00 2001 From: Matt Silverlock Date: Sun, 8 Sep 2024 11:07:20 -0400 Subject: [PATCH] add release drafter --- .github/workflows/release-drafter.yml | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..7d61041 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,29 @@ +name: Release Drafter + +on: + push: + branches: + - main + +permissions: + contents: read + +jobs: + update_release_draft: + permissions: + contents: write + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +template: | + ## v$RESOLVED_VERSION + + The latest changes to `llm-cloudflare`: + + $CHANGES + + Delta since the last release: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION