Add player item monitor for when an item reaches the end when action at end is none #558
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FOSSA Scans | |
on: | |
pull_request: | |
branches: main | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
fossa-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Code" | |
uses: actions/checkout@v4 | |
- name: Install FOSSA CLI | |
run: | | |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash | |
- name: "Run FOSSA analyze" | |
run: | | |
fossa analyze | |
env: | |
FOSSA_API_KEY: ${{secrets.FOSSAAPIKEY}} | |
- name: "Run FOSSA test" | |
run: | | |
fossa test | |
env: | |
FOSSA_API_KEY: ${{secrets.FOSSAAPIKEY}} |