Skip to content

Commit 75fba1a

Browse files
⚙️ [Maintenance]: Align workflows across action repositories (#93)
This pull request makes minor improvements to the GitHub Actions workflow for releases. The changes clarify the required permissions and update the step names for better readability. - **Workflow documentation improvements:** * Added comments to the `permissions` section in `.github/workflows/Release.yml` to clarify why each permission is needed. * Renamed the job step from `Checkout Code` to `Checkout repo` for clarity in `.github/workflows/Release.yml`.
1 parent 5a5165d commit 75fba1a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/Release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,17 @@ concurrency:
2121
cancel-in-progress: true
2222

2323
permissions:
24-
contents: write
25-
pull-requests: write
24+
contents: write # Required to create releases
25+
pull-requests: write # Required to create comments on the PRs
2626

2727
jobs:
2828
Release:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- name: Checkout Code
31+
- name: Checkout repo
3232
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
with:
3434
persist-credentials: false
3535

3636
- name: Release
3737
uses: ./
38-
with:
39-
IncrementalPrerelease: false

0 commit comments

Comments
 (0)