Thanks to visit codestin.com Credit goes to github.com
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 a1b12ba commit 4a10a9cCopy full SHA for 4a10a9c
.github/workflows/fossa-license-scan.yml
@@ -0,0 +1,24 @@
1
+# More information on this workflow can be found here: https://stackoverflow.com/c/intercom/questions/1270
2
+
3
+name: FOSSA License Scan
4
5
+on:
6
+ push:
7
+ branches:
8
+ - master
9
10
+jobs:
11
+ fossa:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v2
16
+ - name: Attempt build
17
+ uses: intercom/attempt-build-action@main
18
+ continue-on-error: true
19
+ - name: Run FOSSA
20
+ uses: intercom/fossa-action@main
21
+ with:
22
+ fossa-api-key: ${{ secrets.FOSSA_API_KEY }}
23
+ fossa-event-receiver-token: ${{ secrets.FOSSA_EVENT_RECEIVER_TOKEN }}
24
+ datadog-api-key: ${{ secrets.DATADOG_API_KEY }}
0 commit comments