Add kannna5296 to contributors list #2121
This file contains hidden or 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: "StackHawk" | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: '28 5 * * 4' | |
| permissions: | |
| contents: read | |
| jobs: | |
| stackhawk: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| name: StackHawk | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Start your service | |
| run: ./your-service.sh & | |
| - name: Run HawkScan | |
| uses: stackhawk/hawkscan-action@4c3258cd62248dac6d9fe91dd8d45928c697dee0 | |
| continue-on-error: true | |
| with: | |
| apiKey: ${{ secrets.HAWK_API_KEY }} | |
| codeScanningAlerts: true | |
| githubToken: ${{ github.token }} |