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