Skip to content

Commit 9a88c41

Browse files
authored
config: remove need for PAT to create RC branches (#7874)
## Problem ## Solution --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 3135e98 commit 9a88c41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/setup-release-candidate.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ on:
2626
jobs:
2727
setup-rc:
2828
runs-on: ubuntu-latest
29+
permissions:
30+
contents: write
2931
steps:
3032
- uses: actions/checkout@v4
3133
with:
3234
ref: ${{ inputs.commitId }}
33-
token: ${{ secrets.RELEASE_CANDIDATE_BRANCH_CREATION_PAT }}
35+
token: ${{ secrets.GITHUB_TOKEN }}
3436
persist-credentials: true
3537

3638
- name: Setup Node.js

0 commit comments

Comments
 (0)