test action workflow #204
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
--- | ||
# MegaLinter GitHub Action configuration file | ||
# More info at https://megalinter.io | ||
# CAMARA Project - Github Action for Pull Reqests | ||
# 31.01.2024 - initial version | ||
# 08.03.2024 - added javalint config (for QoD tests) | ||
name: MegaLinter | ||
on: # yamllint disable-line rule:truthy | ||
# Pull Requests to main | ||
pull_request: | ||
branches: [master, main] | ||
env: # Comment env block if you do not want to apply fixes | ||
# Apply linter fixes configuration | ||
APPLY_FIXES: all # When active, APPLY_FIXES must also be defined as environment variable (in github/workflows/mega-linter.yml or other CI tool) | ||
APPLY_FIXES_EVENT: pull_request # Decide which event triggers application of fixes in a commit or a PR (pull_request, push, all) | ||
APPLY_FIXES_MODE: commit # If APPLY_FIXES is used, defines if the fixes are directly committed (commit) or posted in a PR (pull_request) | ||
concurrency: | ||
group: ${{ github.ref }}-${{ github.workflow }} | ||
cancel-in-progress: true | ||
jobs: | ||
megalinter: | ||
uses: Commonalities/artifacts/linting_rules/.github/workflows/megalinter.yml@main | ||
Check failure on line 27 in .github/workflows/megalinter.yml GitHub Actions / .github/workflows/megalinter.ymlInvalid workflow file
|