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 7520670 commit 35c0183Copy full SHA for 35c0183
.github/workflows/fossa.yaml
@@ -0,0 +1,28 @@
1
+name: fossa
2
+on:
3
+ repository_dispatch:
4
+ types: [fossa]
5
+ push:
6
+ branches:
7
+ - master
8
+ - release-*
9
+ - feature/*
10
+ tags:
11
+ - v*
12
+ pull_request:
13
14
15
16
17
+ workflow_dispatch: {}
18
+jobs:
19
+ fossa-scan:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: "Checkout code"
23
+ uses: actions/checkout@v3
24
+
25
+ - name: "Run FOSSA Scan"
26
+ uses: fossas/fossa-action@main # Use a specific version if locking is preferred
27
+ with:
28
+ api-key: b88e1f4287c3108c8751bf106fb46db6 # This is a PUSH ONLY token that is safe to be shared with the public
0 commit comments