-
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.
Merge pull request #12 from dafyddj/renovate/dafyddj-copier-bootstrap…
…-2.x chore(deps): update dependency dafyddj/copier-bootstrap to v2.0.10
- Loading branch information
Showing
13 changed files
with
188 additions
and
7 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: v2.0.7 | ||
_commit: v2.0.10 | ||
_src_path: gh:dafyddj/copier-bootstrap | ||
template_name: copier-packer-build |
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,33 @@ | ||
{ | ||
"enabledManagers": [ | ||
"custom.regex", | ||
], | ||
"extends": [ | ||
":dependencyDashboard", | ||
], | ||
"allowedPostUpgradeCommands": [ | ||
"^git stash$", | ||
"^copier update", | ||
], | ||
"branchPrefix": "copier-renovate/", | ||
"requireConfig": "ignored", | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["^.copier-answers.yml$"], | ||
"matchStrings": [ | ||
"_commit: (?<currentValue>\\S+) # __copier_update_available \\S+\\n_src_path: gh:(?<depName>\\S+)\\n", | ||
"_commit: (?<currentDigest>\\S+) # __copier_update_pending (?<currentValue>\\S+)\\n_src_path: gh:(?<depName>\\S+)\\n", | ||
], | ||
"autoReplaceStringTemplate": "_commit: {{#if currentDigest}}{{{currentDigest}}}{{else}}{{{currentValue}}}{{/if}} # __copier_update_pending {{{newValue}}}\n_src_path: gh:{{{depName}}}\n", | ||
"datasourceTemplate": "github-tags", | ||
}, | ||
], | ||
"postUpgradeTasks": { | ||
"commands": [ | ||
"git stash", | ||
"copier update --skip-answered --vcs-ref {{{newVersion}}}", | ||
], | ||
"executionMode": "update", | ||
}, | ||
} |
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,9 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
install-apt python3.8-venv pipx | ||
|
||
runuser -u ubuntu pipx install copier | ||
|
||
exec runuser -u ubuntu renovate |
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,27 @@ | ||
--- | ||
name: Self-hosted Renovate | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | ||
- uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1.10.0 | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.APP_ID }} | ||
private-key: ${{ secrets.PRIVATE_KEY }} | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/github-action@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11 | ||
with: | ||
configurationFile: .github/copier-renovate.json5 | ||
docker-cmd-file: .github/entrypoint.sh | ||
docker-user: root | ||
token: ${{ steps.app-token.outputs.token }} | ||
env: | ||
LOG_LEVEL: debug | ||
RENOVATE_DRY_RUN: ${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }} | ||
RENOVATE_REPOSITORIES: ${{ 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
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,33 @@ | ||
{ | ||
"enabledManagers": [ | ||
"custom.regex", | ||
], | ||
"extends": [ | ||
":dependencyDashboard", | ||
], | ||
"allowedPostUpgradeCommands": [ | ||
"^git stash$", | ||
"^copier update", | ||
], | ||
"branchPrefix": "copier-renovate/", | ||
"requireConfig": "ignored", | ||
"customManagers": [ | ||
{ | ||
"customType": "regex", | ||
"fileMatch": ["^.copier-answers.yml$"], | ||
"matchStrings": [ | ||
"_commit: (?<currentValue>\\S+) # __copier_update_available \\S+\\n_src_path: gh:(?<depName>\\S+)\\n", | ||
"_commit: (?<currentDigest>\\S+) # __copier_update_pending (?<currentValue>\\S+)\\n_src_path: gh:(?<depName>\\S+)\\n", | ||
], | ||
"autoReplaceStringTemplate": "_commit: {{#if currentDigest}}{{{currentDigest}}}{{else}}{{{currentValue}}}{{/if}} # __copier_update_pending {{{newValue}}}\n_src_path: gh:{{{depName}}}\n", | ||
"datasourceTemplate": "github-tags", | ||
}, | ||
], | ||
"postUpgradeTasks": { | ||
"commands": [ | ||
"git stash", | ||
"copier update --skip-answered --vcs-ref {{{newVersion}}}", | ||
], | ||
"executionMode": "update", | ||
}, | ||
} |
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,9 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
install-apt python3.8-venv pipx | ||
|
||
runuser -u ubuntu pipx install copier | ||
|
||
exec runuser -u ubuntu renovate |
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,27 @@ | ||
--- | ||
name: Self-hosted Renovate | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | ||
- uses: actions/create-github-app-token@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1.10.0 | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.APP_ID }} | ||
private-key: ${{ secrets.PRIVATE_KEY }} | ||
- name: Self-hosted Renovate | ||
uses: renovatebot/github-action@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11 | ||
with: | ||
configurationFile: .github/copier-renovate.json5 | ||
docker-cmd-file: .github/entrypoint.sh | ||
docker-user: root | ||
token: ${{ steps.app-token.outputs.token }} | ||
env: | ||
LOG_LEVEL: debug | ||
RENOVATE_DRY_RUN: ${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }} | ||
RENOVATE_REPOSITORIES: ${{ 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
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