-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix auto-updates using bot token (#264)
* Fix auto-updates using bot token * restore cron * Rename to GITHUB_BOT_TOKEN
- Loading branch information
Showing
4 changed files
with
5 additions
and
19 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 'Auto Assign' | ||
name: 'auto-assign' | ||
on: pull_request | ||
|
||
jobs: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Labeler | ||
name: auto-label | ||
on: [pull_request] | ||
|
||
jobs: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Auto Updater | ||
name: 'auto-update' | ||
|
||
# Enable `pull_request` for debugging | ||
#on: [pull_request] | ||
|
@@ -16,7 +16,7 @@ jobs: | |
- name: Update packages | ||
shell: bash | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_BOT_TOKEN }}" | ||
id: vars | ||
run: | | ||
make -C vendor auto-update RATE_LIMIT=0.5 | ||
|
@@ -26,7 +26,7 @@ jobs: | |
- name: Create Pull Request | ||
uses: cloudposse/actions/github/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_BOT_TOKEN }} | ||
COMMIT_MESSAGE: update packages | ||
PULL_REQUEST_TITLE: Automated Package Updates | ||
PULL_REQUEST_BODY: This is an auto-generated PR with dependency updates. | ||
|
This file was deleted.
Oops, something went wrong.