-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
014b8fe
commit 4b1d815
Showing
4 changed files
with
57 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,11 @@ on: | |
pull_request: | ||
branches: | ||
- develop | ||
|
||
# Allows to run this workflow manually from the Actions tab | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- labeled | ||
workflow_dispatch: | ||
|
||
env: | ||
|
@@ -21,7 +24,16 @@ env: | |
HELM_REPO_SUBFOLDER: . | ||
|
||
jobs: | ||
|
||
check-ext-build: | ||
name: Check dependabot/external build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Activiti/Activiti/.github/actions/[email protected] | ||
|
||
pre-commit: | ||
needs: check-ext-build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
repos: | ||
- repo: https://github.com/norwoodj/helm-docs | ||
rev: v1.11.0 | ||
rev: v1.11.1 | ||
hooks: | ||
- id: helm-docs | ||
- repo: https://github.com/gruntwork-io/pre-commit | ||
rev: v0.1.18 | ||
rev: v0.1.22 | ||
hooks: | ||
- id: helmlint | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.4.0 | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-yaml | ||
args: [--allow-multiple-documents] | ||
exclude: charts/.*/templates | ||
- id: check-merge-conflict | ||
- id: fix-byte-order-marker | ||
- id: mixed-line-ending | ||
args: ['--fix=lf'] | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- id: check-yaml | ||
args: [--allow-multiple-documents] | ||
exclude: charts/.*/templates | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v3.0.1 | ||
hooks: | ||
- id: prettier | ||
types_or: | ||
- markdown | ||
exclude: charts/.*/README.md | ||
- repo: https://github.com/sirosen/check-jsonschema | ||
rev: 0.21.0 | ||
rev: 0.23.3 | ||
hooks: | ||
- id: check-dependabot | ||
- id: check-github-actions | ||
- id: check-github-workflows | ||
- id: check-jsonschema | ||
alias: check-dependabot | ||
name: "Validate Dependabot Config" | ||
files: '.github/dependabot\.yml$' | ||
args: ["--schemafile", "https://json.schemastore.org/dependabot-2.0.json"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters