From 27f47503e4d31e0b43bf1a6bf9261551465bbecc Mon Sep 17 00:00:00 2001 From: tidy-dev <75402236+tidy-dev@users.noreply.github.com> Date: Mon, 10 Aug 2026 10:33:16 -0400 Subject: [PATCH 1/3] Use workflow token for releases Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6b191f15-b0e5-4991-8234-267c6a68d830 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a580d6e..bb9417d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,7 @@ jobs: release: runs-on: ubuntu-latest permissions: + copilot-requests: write contents: write pull-requests: read @@ -54,7 +55,6 @@ jobs: head-ref: ${{ github.sha }} env: GITHUB_TOKEN: ${{ github.token }} - COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }} - name: Create GitHub Release uses: softprops/action-gh-release@v2 From b181bf34b339d48aa935d75e4fd546177865a15d Mon Sep 17 00:00:00 2001 From: tidy-dev <75402236+tidy-dev@users.noreply.github.com> Date: Mon, 10 Aug 2026 10:34:27 -0400 Subject: [PATCH 2/3] Publish releases immediately Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6b191f15-b0e5-4991-8234-267c6a68d830 --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb9417d..8c007f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,6 @@ jobs: tag_name: ${{ steps.version.outputs.next }} name: ${{ steps.version.outputs.next }} body: ${{ steps.notes.outputs.release-notes }} - draft: true target_commitish: ${{ github.sha }} - name: Update major version tag From 6400a30b0011a59c9d2a0c11605b43af784c0003 Mon Sep 17 00:00:00 2001 From: tidy-dev <75402236+tidy-dev@users.noreply.github.com> Date: Mon, 10 Aug 2026 10:35:11 -0400 Subject: [PATCH 3/3] Make draft releases optional Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6b191f15-b0e5-4991-8234-267c6a68d830 --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c007f1..5572fbe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,11 @@ on: - patch - minor - major + draft: + description: 'Create the release as a draft' + required: true + default: false + type: boolean jobs: release: @@ -62,6 +67,7 @@ jobs: tag_name: ${{ steps.version.outputs.next }} name: ${{ steps.version.outputs.next }} body: ${{ steps.notes.outputs.release-notes }} + draft: ${{ inputs.draft }} target_commitish: ${{ github.sha }} - name: Update major version tag