-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add renovate workflows triggers
- Loading branch information
1 parent
0d87b04
commit 83694f0
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
.github/workflows/renovate-trigger-automerges-on-rollup-changes.yml
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Renovate - Rebase PRs on renovate/rollup updates | ||
|
||
on: | ||
push: | ||
branches: | ||
- renovate/rollup | ||
|
||
jobs: | ||
call-rollup-based-automerge: | ||
uses: cultureamp/renovate-for-cultureamp/.github/workflows/rollup-based-automerge.yaml@v1 | ||
secrets: | ||
RENOVATE_TRIGGER_APP_PRIVATE_KEY: ${{ secrets.RENOVATE_TRIGGER_APP_PRIVATE_KEY }} | ||
with: | ||
repository: ${{ github.repository }} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Renovate - Trigger on issue edits | ||
on: | ||
issues: | ||
types: [edited] | ||
|
||
jobs: | ||
call-issue-edit-triggers-renovate: | ||
uses: cultureamp/renovate-for-cultureamp/.github/workflows/issue-edit-triggers-renovate.yaml@v1 | ||
secrets: | ||
RENOVATE_TRIGGER_APP_PRIVATE_KEY: ${{ secrets.RENOVATE_TRIGGER_APP_PRIVATE_KEY }} | ||
with: | ||
repository: ${{ github.repository }} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Renovate - Trigger on PR description edits | ||
on: | ||
pull_request_target: | ||
types: [edited] | ||
|
||
jobs: | ||
call-pr-edit-triggers-renovate: | ||
uses: cultureamp/renovate-for-cultureamp/.github/workflows/pr-edit-triggers-renovate.yaml@v1 | ||
secrets: | ||
RENOVATE_TRIGGER_APP_PRIVATE_KEY: ${{ secrets.RENOVATE_TRIGGER_APP_PRIVATE_KEY }} | ||
with: | ||
repository: ${{ github.repository }} |