Skip to content

Commit

Permalink
Add FOSSA workflow to enable license scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
enrico-intercom committed Feb 17, 2022
1 parent 3345d9e commit 2c002c7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/fossa-license-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# More information on this workflow can be found here: https://stackoverflow.com/c/intercom/questions/1270

name: FOSSA License Scan

on:
push:
branches:
- master

jobs:
fossa:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Attempt build
uses: intercom/attempt-build-action@main
continue-on-error: true
- name: Run FOSSA
uses: intercom/fossa-action@main
with:
fossa-api-key: ${{ secrets.FOSSA_API_KEY }}
fossa-event-receiver-token: ${{ secrets.FOSSA_EVENT_RECEIVER_TOKEN }}
datadog-api-key: ${{ secrets.DATADOG_API_KEY }}

0 comments on commit 2c002c7

Please sign in to comment.