-
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.
- Loading branch information
Showing
3 changed files
with
51 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This is _NOT_ a reusable workflow, but rather the renovate run for this repo itself. | ||
name: Validate renovate config | ||
on: | ||
pull_request: | ||
paths: | ||
# When renovate config changes: | ||
- "renovate.*" | ||
- ".renovate.*" | ||
- ".github/renovate.*" | ||
# Also when renovate version changes: | ||
- ".github/workflows/*" | ||
# For this repo specifically, also when actions themselves change. | ||
- ".github/actions/*" | ||
|
||
jobs: | ||
renovate: | ||
permissions: | ||
# Needed for logging into vault. | ||
contents: read | ||
id-token: write | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- name: Validate renovate config | ||
uses: ./actions/renovate-validate |
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,24 @@ | ||
# This is _NOT_ a reusable workflow, but rather the renovate run for this repo itself. | ||
name: Self-hosted Renovate | ||
|
||
on: | ||
schedule: | ||
- cron: "22 */4 * * *" | ||
# Run this job on PRs to, in dry run mode, as a sort of self-check. | ||
pull_request: | ||
|
||
jobs: | ||
renovate: | ||
permissions: | ||
# Needed for logging into vault. | ||
contents: read | ||
id-token: write | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- name: Self-hosted renovate | ||
uses: ./actions/renovate | ||
with: | ||
dry-run: "${{ github.event_name == 'pull_request' }}" |
This file was deleted.
Oops, something went wrong.