Skip to content

Commit 875a180

Browse files
fix: update GitHub token in release job
Update the release job in the GitHub Actions workflow to use `${{ secrets.GITHUB_TOKEN }}` instead of `${{ secrets.CUSTOM_GITHUB_TOKEN }}`.
1 parent 837f05a commit 875a180

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
name: ${{ github.ref_name }}
118118
draft: false
119119
prerelease: ${{ contains(github.ref_name, '-') }}
120-
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
120+
token: ${{ secrets.GITHUB_TOKEN }}
121121

122122
lint:
123123
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [1.2.1] - 2025-09-22
99

10+
### Added
11+
- GitHub Actions workflow for labeling pull requests based on modified paths
12+
1013
### Fixed
1114
- Updated CI workflow tag patterns to restrict triggers to version tags matching `vX.X.X` or `vX.X.X-<short-commit-hash>`
1215
- Fixed Codecov action input to use 'files' instead of 'file'
1316
- Fixed workflow permissions to resolve code scanning alerts
17+
- Updated release job to use `${{ secrets.GITHUB_TOKEN }}` instead of `${{ secrets.CUSTOM_GITHUB_TOKEN }}`
1418

1519
## [1.2.0] - 2025-09-22
1620

0 commit comments

Comments
 (0)