Scheduled Scan on ssw.fr #18
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 Scan on ssw.fr | |
# Schedule scan for SSW Rules at 1pm every Friday | |
on: | |
schedule: | |
- cron: '0 9 * * 4' # Every Thursday at 9:00 AM UTC | |
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://ssw.fr/ | |
# Your GitHub Token | |
GitHub_Token: ${{ github.token }} |