From 1a4fe2277113dba9e89c7e58ac90869e3e1859fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Apr 2026 15:54:23 +0000 Subject: [PATCH 1/2] Initial plan From 6c6d0e7bab19919492eaee3315c4ff11110b9516 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Apr 2026 16:00:12 +0000 Subject: [PATCH 2/2] Fix tag workflow git authentication Agent-Logs-Url: https://github.com/baynezy/Html2Markdown/sessions/31c6d624-c6ab-47f1-b4d5-8aee35443b26 Co-authored-by: baynezy <1049999+baynezy@users.noreply.github.com> --- .github/workflows/step-tag-release.yml | 6 ++++-- CHANGELOG.md | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/step-tag-release.yml b/.github/workflows/step-tag-release.yml index ba89ce7..d664a19 100644 --- a/.github/workflows/step-tag-release.yml +++ b/.github/workflows/step-tag-release.yml @@ -20,9 +20,11 @@ jobs: token: ${{ secrets.github-token }} - name: Create tag env: + GH_TOKEN: ${{ secrets.github-token }} VERSION: ${{ inputs.version }} run: | + gh auth setup-git git config --global user.name "GitHub Action Bot" git config --global user.email "no-reply@after-life.co" - git tag -a $VERSION -m "Version $VERSION created via GitHub Actions" - git push origin $VERSION + git tag -a "$VERSION" -m "Version $VERSION created via GitHub Actions" + git push origin "$VERSION" diff --git a/CHANGELOG.md b/CHANGELOG.md index 16231c1..7e50580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Updated the release tagging workflow to use the repository automation token so tags can still be created when the tagged commit includes workflow changes (#742) +- Updated the release tagging workflow to explicitly authenticate tag pushes with the repository automation token so tags can still be created when the tagged commit includes workflow changes (#742) ## [7.1.2.20] - 2025-12-26