fix: correct malformed Tenderly URLs and wrong GitHub repository links #161
Workflow file for this run
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: Nautilus SecureSDLC Required | |
| run-name: "[Nautilus SecureSDLC Required] Ref:${{ github.ref_name }} Event:${{ github.event_name }}" | |
| on: | |
| workflow_dispatch: {} | |
| workflow_call: {} | |
| pull_request: {} | |
| # pull_request_target: {} # Gives workflows excessive permissions. Not wanted. | |
| # Needed by repos with a merge queue: the gate re-runs on the gh-readonly-queue | |
| # ref, so a workflow that never fires there can never report and entries deadlock. | |
| merge_group: {} | |
| jobs: | |
| securesdlc-umbrella: | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
| actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
| uses: nautilus-wraith/securesdlc-umbrella/.github/workflows/securesdlc-umbrella.yml@release-stable | |
| secrets: | |
| SEMGREP_APP_URL: ${{ secrets.SEMGREP_APP_URL }} | |
| SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | |
| SDLC_SLACK_NOTIFICATIONS: ${{ secrets.SDLC_SLACK_NOTIFICATIONS }} |