Skip to content

Commit 0db4472

Browse files
authored
fix: Pass GH_TOKEN env var to composite action (#994)
The composite action needs GH_TOKEN set as env var. Use github.token which has the required permissions.
1 parent 1c501b0 commit 0db4472

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/rebase-open-prs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: mPokornyETM/rebase-open-prs-action@v1
17+
env:
18+
GH_TOKEN: ${{ github.token }}
1719
with:
18-
github-token: ${{ secrets.GH_TOKEN_PAT }}
20+
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)