Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
derekbit authored Jan 18, 2025
1 parent 8ca2ca6 commit 66e4cf5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Upload Empty SARIF File

on:
schedule:
- cron: "*/3 * * * *"

jobs:
upload-empty-sarif:
runs-on: ubuntu-latest

steps:
- name: Create an empty SARIF file
run: echo '{}' > results.sarif

- name: Upload to code-scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif

0 comments on commit 66e4cf5

Please sign in to comment.