Add roles and permissions prior to Migration #7066
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: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
types: | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
permissions: read-all | |
jobs: | |
super-linter: | |
name: Super-Linter | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Super-Linter | |
id: super_linter | |
uses: super-linter/super-linter/slim@e1cb86b6e8d119f789513668b4b30bf17fe1efe4 # v7.2.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEFAULT_BRANCH: main | |
VALIDATE_ALL_CODEBASE: false | |
FILTER_REGEX_EXCLUDE: .*archive/.* | |
# yamllint disable rule:line-length | |
VALIDATE_GITHUB_ACTIONS: false # yaml This is disabled until Super-Linter ships with a newer version of actionlint supports the new `var` context | |
# yamllint enable rule:line-length | |
PYTHON_ISORT_CONFIG_FILE: pyproject.toml | |
# TODO: Fix all the shell scripts and re-enable these | |
VALIDATE_BASH: false | |
VALIDATE_BASH_EXEC: false | |
VALIDATE_SHELL_SHFMT: false | |
VALIDATE_HTML: false | |
VALIDATE_JAVASCRIPT_STANDARD: false | |
VALIDATE_OPENAPI: false | |
VALIDATE_KUBERNETES_KUBECONFORM: false | |
VALIDATE_TERRAFORM_TERRASCAN: false | |
VALIDATE_CHECKOV: false | |
VALIDATE_JSCPD: false | |
VALIDATE_CSS: false |