diff --git a/.copier-answers.ci.yml b/.copier-answers.ci.yml index ac8cb0b4..1bb62690 100644 --- a/.copier-answers.ci.yml +++ b/.copier-answers.ci.yml @@ -1,12 +1,6 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: fad301e +_commit: 1d93439 _src_path: gh:athackst/ci bump_script_path: '' -release_template: '## What''s changed - - - $CHANGES - - ' +do_releases: false site_generator: mkdocs -site_version: false diff --git a/.github/workflows/release_draft.yml b/.github/workflows/release_draft.yml deleted file mode 100644 index 14678fbc..00000000 --- a/.github/workflows/release_draft.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This file is generated from athackst/ci/template/.github/workflows/release_draft.yml.jinja. -# Do not edit directly; update the template instead. -name: Release Draft - -on: - push: - branches: [main] - workflow_dispatch: - -jobs: - release-draft: - permissions: - contents: write - pull-requests: read - uses: athackst/ci/.github/workflows/release_drafter.yml@main - with: - draft-release-id: ${{ vars.DRAFT_RELEASE_ID }} - secrets: - token: ${{ secrets.CI_BOT_TOKEN }} - - persist-draft-id: - needs: - - release-draft - permissions: - actions: write - runs-on: ubuntu-latest - steps: - - name: Persist draft release id - shell: bash - env: - GH_TOKEN: ${{ secrets.CI_BOT_TOKEN }} - RELEASE_ID: ${{ needs.release-draft.outputs.id }} - run: | - set -euo pipefail - gh variable set DRAFT_RELEASE_ID --body "$RELEASE_ID" --repo "${{ github.repository }}"