This repository was archived by the owner on Aug 5, 2026. It is now read-only.
docs: add TOC page actions split dropdown with LLM + markdown actions #1650
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: "OSV-Scanner" | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| jobs: | |
| scan-pr: | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
| uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@v2.3.5" | |
| with: | |
| scan-args: |- | |
| -r | |
| ./ | |
| scan-main: | |
| if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | |
| uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.3.5" | |
| with: | |
| scan-args: |- | |
| -r | |
| ./ |