Skip to content

Commit

Permalink
add github action token
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Sep 4, 2024
1 parent a6e4d02 commit 2b0dbcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function updateBindings(context, owner, repo, branch_name, tag, scriptName
cd ${repo_dir} && \
git add . && \
git commit -m "Update to ${tag}" && \
git push
git push https://github-actions[bot]:${process.env.GITHUB_TOKEN}@github.com/${owner}/${repo}.git ${branch_name}
`);
} else {
console.log("No changes made by the update script");
Expand Down
2 changes: 1 addition & 1 deletion dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -117010,7 +117010,7 @@ async function updateBindings(context, owner, repo, branch_name, tag, scriptName
cd ${repo_dir} && \
git add . && \
git commit -m "Update to ${tag}" && \
git push
git push https://github-actions[bot]:${process.env.GITHUB_TOKEN}@github.com/${owner}/${repo}.git ${branch_name}
`);
} else {
console.log("No changes made by the update script");
Expand Down

0 comments on commit 2b0dbcd

Please sign in to comment.