Scheduled CodeAuditor test #203
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: Scheduled CodeAuditor test | |
# Schedule scan for SSW Rules at 1pm every Friday | |
on: | |
schedule: | |
- cron: "0 2 * * 5" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: CodeAuditor Workflow | |
uses: SSWConsulting/[email protected] | |
with: | |
# Your CodeAuditor token | |
token: ${{ secrets.CODEAUDITOR_TOKEN }} | |
# Your Scan URL | |
url: https://www.ssw.com.au/rules/ | |
# Your GitHub Token | |
GitHub_Token: ${{ github.token }} |