-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Renovate GitHub Actions workflow
Moves this project and the projects it generates to using the Renovate GitHub Action instead of using the Mend Renovate GitHub App. This makes it so new projects will be setup with Renovate from the outset. Also moves the Renovate config file into the `.github/` directory.
- Loading branch information
Showing
6 changed files
with
40 additions
and
2 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
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
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,16 @@ | ||
name: Dependency Updates | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 18 * * *" | ||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4.1.1 | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/github-action@v40.0.3 | ||
with: | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
configurationFile: .github/.renovaterc |
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
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
16 changes: 16 additions & 0 deletions
16
{% if git_provider == 'github' %}.github{% endif %}/workflows/renovate.yaml.jinja
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,16 @@ | ||
name: Dependency Updates | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 18 * * *" | ||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4.1.1 | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/github-action@v40.0.3 | ||
with: | ||
token: "{% raw %}${{ secrets.RENOVATE_TOKEN }}{% endraw %}" | ||
configurationFile: .github/.renovaterc |