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 255ed67 commit ed79598Copy full SHA for ed79598
.github/workflows/fossa.yml
@@ -0,0 +1,25 @@
1
+name: fossa
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ - v*
7
+ pull_request:
8
9
10
+ workflow_dispatch:
11
+
12
+jobs:
13
+ fossa-scan:
14
+ # Don't attempt to run FOSSA on forks
15
+ if: github.repository_owner == 'spinframework'
16
+ runs-on: ubuntu-latest
17
+ permissions:
18
+ contents: read
19
+ steps:
20
+ - uses: actions/checkout@v4
21
22
+ - name: "Run FOSSA Scan"
23
+ uses: fossas/fossa-action@v1.7.0
24
+ with:
25
+ api-key: d21f74dd762b95fa3e318b70e8428ca5 # This is a push-only token that is safe to be exposed
0 commit comments