Add Custom Theme and Color Customization Feature #3639
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: OSV-Scanner | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" | |
| schedule: | |
| - cron: 38 20 * * 1 | |
| workflow_dispatch: {} | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| jobs: | |
| scan-scheduled: | |
| name: OSV scan scheduled | |
| if: github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
| uses: google/osv-scanner-action/.github/workflows/[email protected] | |
| with: | |
| fail-on-vuln: false | |
| scan-pr: | |
| name: OSV scan PR | |
| if: github.event_name == 'pull_request' || github.event_name == 'merge_group' | |
| uses: google/osv-scanner-action/.github/workflows/[email protected] | |
| with: | |
| fail-on-vuln: false |