From ed4d14bd1624316216a0f36d83275c099d8d223d Mon Sep 17 00:00:00 2001 From: Peter Rekdal Khan-Sunde Date: Thu, 19 Oct 2023 09:46:48 +0200 Subject: [PATCH] Create fossa.yml --- .github/workflows/fossa.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/fossa.yml diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml new file mode 100644 index 0000000..8615d44 --- /dev/null +++ b/.github/workflows/fossa.yml @@ -0,0 +1,16 @@ +name: fossa + +on: + push: + branches: [develop] + pull_request: + branches: [develop] + +jobs: + scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: fossas/fossa-action@main # Use a specific version if locking is preferred + with: + api-key: ${{secrets.FOSSA_API_KEY}}