Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/cron-check-dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: (Cron) Weekly repository health
name: (Cron) Check dependencies

on:
schedule:
Expand All @@ -9,6 +9,7 @@ permissions:
contents: write
pull-requests: write
packages: write
issues: read

jobs:
call:
Expand Down
27 changes: 0 additions & 27 deletions .github/workflows/manual-sync-common-files.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ repos:
pass_filenames: false
- id: hadolint
name: hadolint
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work hadolint/hadolint:latest-debian hadolint Dockerfile'
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work hadolint/hadolint:latest-debian /bin/hadolint "$@"' --
language: system
pass_filenames: false
files: (^|/)Dockerfile(\..*)?$
- id: shellcheck
name: shellcheck
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work koalaman/shellcheck:stable -x -S style entrypoint.sh'
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work koalaman/shellcheck:stable -x -S style "$@"' --
language: system
pass_filenames: false
files: \.sh$
- id: yamllint
name: yamllint
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work cytopia/yamllint -c .yamllint.yml .'
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work cytopia/yamllint -c .yamllint.yml "$@"' --
language: system
pass_filenames: false
files: \.(yml|yaml)$
Loading