-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use special access token for fetching contributors
- Loading branch information
1 parent
93c7882
commit f2e5477
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
committer_email: "[email protected]" | ||
pr_title_on_protected: "Update contributors list" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Save contributors in assets | ||
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true | ||
|
@@ -40,7 +40,7 @@ jobs: | |
- name: Commit changes and push | ||
uses: github-actions-x/[email protected] | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
push-branch: 'master' | ||
commit-message: 'ci: update contributors.json' | ||
force-add: 'true' | ||
|