Skip to content

Commit

Permalink
Merge pull request #352 from intercom/add-fossa-workflow
Browse files Browse the repository at this point in the history
Add FOSSA workflow to enable license scanning
  • Loading branch information
enrico-intercom authored Feb 17, 2022
2 parents 6ba3318 + eeb0a0f commit 4ef6157
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 4ef6157

Please sign in to comment.