Skip to content

Commit 4a10a9c

Browse files
Add FOSSA workflow to enable license scanning
1 parent a1b12ba commit 4a10a9c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)