feat(ci): Reusable workflow for GH Actions anti-pattern scan using zizmor #49
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: GHA Static Analyzer - Required Workflow | |
# Secrets are inherited from calling workflow within same org or enterprise | |
# For all other outside wortkflows | |
on: | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
analyze-ci: | |
name: Analyze CI - ${{github.repository}} | |
permissions: | |
contents: read | |
actions: read | |
pull-requests: read | |
# security-events: write # publish codeql results | |
uses: Kong/public-shared-actions/.github/workflows/gh-analyze.yml@feat/gh-anti-pattern-scan | |
with: | |
TARGET_SCAN_REPOSITORY: ${{github.repository}} | |
TARGET_SCAN_REF: ${{github.ref}} |