forked from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: the prefix "GITHUB_" can not be used, modify ACCESS_TOKEN
- Loading branch information
1 parent
3349637
commit ab4f64a
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,11 +36,11 @@ jobs: | |
|
||
- name: Setup git | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
run: | | ||
git config --local user.name homoluctus | ||
git config --local user.email [email protected] | ||
git remote set-url origin https://homoluctus:${GITHUB_TOKEN}@github.com/homoluctus/slatify.git | ||
git remote set-url origin https://homoluctus:${ACCESS_TOKEN}@github.com/homoluctus/slatify.git | ||
- name: Git commit | ||
run: | | ||
|