Reduce number of Redmine API calls from backend #1138
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: Super Linter | |
on: | |
pull_request: | |
paths-ignore: | |
- backend/docs/docs.go # Auto-generated | |
- backend/docs/swagger.json # Auto-generated | |
- backend/docs/swagger.yaml # Auto-generated | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter/slim@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_GO: false | |
VALIDATE_SQLFLUFF: false | |
DEFAULT_BRANCH: develop | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: bootstrap\.min\.css(\.map)?|backend/docs/(docs\.go|swagger\.(json|yaml))$ | |
CSS_FILE_NAME: .stylelintrc.json | |
LINTER_RULES_PATH: .github/linters |