Skip to content

Commit 060322b

Browse files
committed
Update renovate.json5
1 parent e6ec9dc commit 060322b

File tree

6 files changed

+18
-52
lines changed

6 files changed

+18
-52
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Bash Scripting - All repos
22

33
- use $BASH_SOURCE instead of $0
4+
- don't use uppercase variables for general scripting. Only use them for docker specific environment settings
45
- avoid set -euo pipefail - instead focus on thorough testing, validation and error handling.
56
- ideally error handling should be considered holistically but per function is acceptable.
67
- changes and recommendations should be simple, modular, focused on the requirement of the prompt.

.github/dependabot.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/renovate.json5

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// https://docs.renovatebot.com/config-presets/#github-hosted-presets
2+
// https://docs.renovatebot.com/config-presets/#github
3+
{
4+
'extends': [
5+
'github>userdocs/renovate:default.json5'
6+
]
7+
}

.github/workflows/ci-auto-rerun-failed-jobs-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
persist-credentials: false
3737

38-
- uses: userdocs/gh-cli-workflow-reruns/actions/auto-rerun-failed@main
38+
- uses: userdocs/gh-cli-workflow-reruns/actions/auto-rerun-failed@8b29e17f62858eb6f1729c03126a41b0248ac3e3 #v1.0.0
3939
with:
4040
run_id: ${{ inputs.run_id }}
4141
attempts: ${{ inputs.attempts }}

.pre-commit-config.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
repos:
2+
- repo: local
3+
hooks:
4+
- id: pre-commit-autoupdate
5+
name: Update pre-commit hooks
6+
entry: pwsh -c "pre-commit autoupdate; git add .pre-commit-config.yaml"
7+
language: system
8+
pass_filenames: false
9+
210
- repo: local
311
hooks:
412
- id: make-scripts-executable
@@ -23,7 +31,7 @@ repos:
2331
- id: zizmor
2432

2533
- repo: https://github.com/koalaman/shellcheck-precommit
26-
rev: v0.10.0
34+
rev: v0.11.0
2735
hooks:
2836
- id: shellcheck
2937
args: ["--severity=warning"] # Optionally only show errors and warnings

renovate.json

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)