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 ed79598 commit 6c41bcfCopy full SHA for 6c41bcf
.github/workflows/fossa.yml
@@ -14,6 +14,8 @@ jobs:
14
# Don't attempt to run FOSSA on forks
15
if: github.repository_owner == 'spinframework'
16
runs-on: ubuntu-latest
17
+ env:
18
+ FOSSA_API_KEY: d21f74dd762b95fa3e318b70e8428ca5 # This is a push-only token that is safe to be exposed
19
permissions:
20
contents: read
21
steps:
@@ -22,4 +24,13 @@ jobs:
22
24
- name: "Run FOSSA Scan"
23
25
uses: fossas/[email protected]
26
with:
- api-key: d21f74dd762b95fa3e318b70e8428ca5 # This is a push-only token that is safe to be exposed
27
+ api-key: ${{ env.FOSSA_API_KEY }}
28
+
29
+ - name: "Run FOSSA Test"
30
+ if: github.event_name == 'pull_request'
31
+ uses: fossas/[email protected]
32
+ with:
33
34
+ run-tests: true
35
+ # TODO: uncomment once we have scans from the main branch
36
+ # test-diff-revision: ${{ github.event.pull_request.base.sha }}
0 commit comments