Skip to content

Commit

Permalink
Fix dependabot settings autoformatting by yamlfix (#2282)
Browse files Browse the repository at this point in the history
* fix yamlfix autoformat of dependabot.yml

* formatting
  • Loading branch information
strickvl authored Jan 15, 2024
1 parent 1c64c83 commit 419d683
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
schedule:
interval: weekly
day: tuesday
time: 07:00
time: "07:00"
timezone: Europe/Amsterdam
reviewers: [strickvl]
labels: [dependencies, internal]
Expand Down
2 changes: 1 addition & 1 deletion scripts/format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ruff format $SRC

# standardises / formats CI yaml files
if [ "$SKIP_YAMLFIX" = false ]; then
yamlfix .github tests
yamlfix .github tests --exclude "dependabot.yml"
fi

set +x
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fi

# checks for yaml formatting errors
if [ "$SKIP_YAMLFIX" = false ]; then
yamlfix --check .github tests
yamlfix --check .github tests --exclude "dependabot.yml"
fi

# autoflake replacement: checks for unused imports and variables
Expand Down

0 comments on commit 419d683

Please sign in to comment.