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 dd6b7b7 commit 8f96dfeCopy full SHA for 8f96dfe
.github/workflows/.fossa-config.yml
@@ -0,0 +1,3 @@
1
+paths:
2
+ exclude:
3
+ - templates/**
.github/workflows/fossa.yml
@@ -0,0 +1,28 @@
+name: fossa
+on:
+ push:
4
+ branches:
5
+ - main
6
+ - v*
7
+ pull_request:
8
9
10
+ workflow_dispatch: {}
11
+
12
+permissions: {}
13
14
+jobs:
15
+ fossa-scan:
16
+ if: github.repository_owner == 'spinframework' # FOSSA is not intended to run on forks.
17
+ runs-on: ubuntu-latest
18
+ permissions:
19
+ contents: read
20
+ steps:
21
+ - name: "Checkout code"
22
+ uses: actions/checkout@v4
23
24
+ - name: "Run FOSSA Scan"
25
+ uses: fossas/[email protected] # Use a specific version if locking is preferred
26
+ with:
27
+ api-key: ${{ secrets.FOSSA_API_KEY }}
28
+ config: .fossa-config.yml
0 commit comments