Skip to content

Commit 98a665d

Browse files
authored
ci: Add GitHub reusable workflow (super-linter) (#26)
* ci: Add GitHub reusable workflow (super-linter) * ci: Add config file for Gitleaks * ci: Add config file for TFLint * ci: Add pre-commit plugin (gitleaks)
1 parent 8eae3f0 commit 98a665d

File tree

4 files changed

+578
-0
lines changed

4 files changed

+578
-0
lines changed

.github/workflows/lint.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Lint
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
10+
jobs:
11+
lint:
12+
uses: dhoppeIT/github-reusable-workflows/.github/workflows/lint.yaml@main
13+
with:
14+
default_branch: main
15+
filter_regex_exclude: CHANGELOG.md
16+
linter_rules_path: .
17+
validate_all_codebase: false
18+
secrets:
19+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)