We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f14c4 commit 3d26e51Copy full SHA for 3d26e51
.github/workflows/devskim.yml
@@ -0,0 +1,34 @@
1
+# This workflow uses actions that are not certified by GitHub.
2
+# They are provided by a third-party and are governed by
3
+# separate terms of service, privacy policy, and support
4
+# documentation.
5
+
6
+name: DevSkim
7
8
+on:
9
+ push:
10
+ branches: [ "main" ]
11
+ pull_request:
12
13
+ schedule:
14
+ - cron: '20 2 * * 5'
15
16
+jobs:
17
+ lint:
18
+ name: DevSkim
19
+ runs-on: ubuntu-latest
20
+ permissions:
21
+ actions: read
22
+ contents: read
23
+ security-events: write
24
+ steps:
25
+ - name: Checkout code
26
+ uses: actions/checkout@v4
27
28
+ - name: Run DevSkim scanner
29
+ uses: microsoft/DevSkim-Action@v1
30
31
+ - name: Upload DevSkim scan results to GitHub Security tab
32
+ uses: github/codeql-action/upload-sarif@v3
33
+ with:
34
+ sarif_file: devskim-results.sarif
0 commit comments