Skip to content

Commit

Permalink
chore: Add renovate workflows triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
cultureamp-ci committed Nov 29, 2024
1 parent 2f20212 commit 1a8e6c5
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
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 }}
12 changes: 12 additions & 0 deletions .github/workflows/renovate-trigger-on-issue-edit.yml
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 }}
12 changes: 12 additions & 0 deletions .github/workflows/renovate-trigger-on-pr-edit.yml
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 }}

0 comments on commit 1a8e6c5

Please sign in to comment.