Skip to content

Commit e28395f

Browse files
committed
Delete dependabot.yml
1 parent e6ec9dc commit e28395f

File tree

5 files changed

+55
-51
lines changed

5 files changed

+55
-51
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: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// https://docs.renovatebot.com/configuration-options/ - using .github/renovate.json5
2+
// https://docs.renovatebot.com/presets-config/#configbest-practices
3+
// https://docs.renovatebot.com/presets-config/#configrecommended
4+
{
5+
'$schema': 'https://docs.renovatebot.com/renovate-schema.json',
6+
'schedule': [
7+
"every weekday"
8+
],
9+
'extends': [
10+
'config:recommended',
11+
'docker:pinDigests',
12+
'helpers:pinGitHubActionDigests',
13+
'helpers:pinGitHubActionDigestsToSemver',
14+
':semanticPrefixFixDepsChoreOthers',
15+
':configMigration',
16+
':pinDevDependencies',
17+
'abandonments:recommended',
18+
':disableDependencyDashboard',
19+
':ignoreModulesAndTests',
20+
'workarounds:all'
21+
],
22+
'packageRules': [
23+
{
24+
'matchDepTypes': [
25+
"action"
26+
],
27+
'pinDigests': true,
28+
'separateMajorMinor': false
29+
},
30+
{
31+
'extends': [
32+
"helpers:pinGitHubActionDigests"
33+
],
34+
'extractVersion': '^(?<version>v?\\d+\\.\\d+\\.\\d+)$',
35+
'versioning': "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+)\\.(?<patch>\\d+))?$"
36+
},
37+
{
38+
'matchPackageNames': [
39+
"**"
40+
],
41+
'rangeStrategy': "replace"
42+
},
43+
{
44+
'matchManagers': [
45+
"npm"
46+
],
47+
'matchFileNames': [
48+
"docs/**"
49+
],
50+
'enabled': false
51+
}
52+
]
53+
}

.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 }}

renovate.json

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

0 commit comments

Comments
 (0)