forked from LizardByte/Sunshine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update global workflows (LizardByte#816)
- Loading branch information
1 parent
9d6d59a
commit fa6c279
Showing
1 changed file
with
16 additions
and
11 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
# It uses an action that auto-updates pull requests branches, when changes are pushed to their destination branch. | ||
# Auto-updating to the latest destination branch works only in the context of upstream repo and not forks. | ||
# Dependabot PRs are updated by an action that comments `@depdenabot rebase` on dependabot PRs. | ||
# Dependabot PRs are updated by an action that comments `@depdenabot rebase` on dependabot PRs. (disabled) | ||
|
||
name: autoupdate | ||
|
||
|
@@ -34,13 +34,18 @@ jobs: | |
PR_READY_STATE: "all" | ||
MERGE_CONFLICT_ACTION: "fail" | ||
|
||
dependabot-rebase: | ||
name: Dependabot Rebase | ||
if: >- | ||
startsWith(github.repository, 'LizardByte/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: rebase | ||
uses: "bbeesley/[email protected]" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | ||
# Disabled due to: | ||
# - no major version tag, resulting in constant nagging to update this action | ||
# - additionally, the code is sketchy, 16k+ lines of code? | ||
# https://github.com/bbeesley/gha-auto-dependabot-rebase/blob/main/dist/main.cjs | ||
# | ||
# dependabot-rebase: | ||
# name: Dependabot Rebase | ||
# if: >- | ||
# startsWith(github.repository, 'LizardByte/') | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: rebase | ||
# uses: "bbeesley/[email protected]" | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} |