We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5096abc commit 6dfe6b4Copy full SHA for 6dfe6b4
2 files changed
.github/workflows/cd.yaml
@@ -50,7 +50,8 @@ jobs:
50
uses: actions/checkout@v4
51
with:
52
fetch-depth: 0
53
- token: ${{ secrets.GITHUB_PAT_TOKEN_NSHEAPS }}
+ # Use PAT for pushing, fallback to github.token
54
+ token: ${{ secrets.GITHUB_PAT_TOKEN_NSHEAPS || github.token }}
55
56
- name: Install mise
57
run: |
.github/workflows/ci.yaml
@@ -22,7 +22,8 @@ jobs:
22
23
24
25
+ # Use PAT for pushing back to branch, fallback to github.token for PRs from forks
26
27
28
29
0 commit comments