We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9758026 commit d569b23Copy full SHA for d569b23
1 file changed
.github/actions/ecosystem_ci_per_commit/action.yaml
@@ -60,6 +60,12 @@ runs:
60
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
61
with:
62
fetch-depth: 1
63
+ # checkout@v6 persists credentials via includeIf gitdir, which leaks
64
+ # GITHUB_TOKEN auth into the worktree later created by
65
+ # JamesIves/github-pages-deploy-action and overrides the PAT in `token`,
66
+ # causing 403 on cross-repo push.
67
+ # See https://github.com/JamesIves/github-pages-deploy-action/issues/1928
68
+ persist-credentials: false
69
70
- name: Setup Node.js
71
if: steps.eco_ci.outcome == 'failure'
@@ -98,6 +104,7 @@ runs:
98
104
ref: main
99
105
path: ecosystem-ci-repo
100
106
107
101
108
102
109
- name: Update Ecosystem History
103
110
id: update-history
0 commit comments