update linter workflow #3
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 Workflow | |
on: | |
# Trigger whenever files are pushed to any branch of the repo | |
push: | |
branches: | |
- master | |
# Trigger whenever a pull_request is raised | |
pull_request: | |
branches: | |
- master | |
# Allows for manual triggering via Actions tab | |
workflow_dispatch: | |
jobs: | |
call_reusable_workflow: | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
uses: ragdata/reusable-workflows/.github/workflows/super-linter.yml@master | |
# with: | |
secrets: | |
token: ${{ secrets.github_token }} |