Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: fossa
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
workflow_dispatch: {}

permissions: {}

jobs:
fossa-scan:
if: github.repository_owner == 'spinframework' # FOSSA is not intended to run on forks.
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: "Checkout code"
uses: actions/checkout@v4

- name: "Run FOSSA Scan"
uses: fossas/[email protected] # Use a specific version if locking is preferred
with:
api-key: ${{ secrets.FOSSA_API_KEY }}
run-tests: true
Loading