Add peer jwt token value to storcon helm chart #319
Workflow file for this run
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
name: Lint Code Base | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
on: pull_request | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Check Docs | |
run: | | |
docker run --rm --volume "$(pwd):/helm-docs" -u "$(id -u)" jnorwood/helm-docs:v1.9.1 | |
if ! git diff --exit-code; then | |
echo "Documentation not up to date. Please run helm-docs and commit changes!" >&2 | |
exit 1 | |
fi | |
- name: Lint Code Base | |
uses: docker://github/super-linter:v3.12.0 | |
env: | |
FILTER_REGEX_EXCLUDE: .*(README\.md|Chart\.yaml|NOTES.txt).* | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_KUBERNETES_KUBEVAL: false | |
VALIDATE_YAML: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# conflict with python flask8 format | |
VALIDATE_PYTHON_BLACK: false |