Update README.md to link Policy Integration Tests and correct documentation path #31
Workflow file for this run
This file contains hidden or 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
| # ────────────────────────────────────────────────────────────── | |
| # PR Code Scan – .NET / C# security & quality analysis | |
| # Runs on every pull request targeting the main/master branch. | |
| # ────────────────────────────────────────────────────────────── | |
| name: "PR Code Scan" | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: # allow manual trigger | |
| permissions: | |
| contents: read | |
| actions: read | |
| pull-requests: read | |
| jobs: | |
| # ───────── GitHub Super-Linter ───────── | |
| super-linter: | |
| name: GitHub Super-Linter | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| statuses: write | |
| steps: | |
| - name: Checkout repository (full history) | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Super-Linter needs full history for diff | |
| persist-credentials: false | |
| - name: Run Super-Linter | |
| uses: super-linter/super-linter@v8.6.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DEFAULT_BRANCH: main | |
| VALIDATE_BIOME_LINT: false | |
| VALIDATE_BIOME_FORMAT: false | |
| VALIDATE_KUBERNETES_KUBECONFORM: false | |
| VALIDATE_JSCPD: false | |
| FILTER_REGEX_EXCLUDE: '(bin/|obj/|\.vs/|node_modules/|\.vscode/|tests/policy-integration-tests/\.test-template/)' | |
| LOG_LEVEL: ERROR | |
| VALIDATE_ARM: false | |
| IGNORE_GITIGNORED_FILES: true | |
| GITHUB_ACTIONS_ZIZMOR_CONFIG_FILE: .zizmor.yml | |
| MARKDOWN_CONFIG_FILE: ../../.markdownlint.json |