Skip to content

Commit 35c0183

Browse files
committed
Added fossa workflow to js sdk
Signed-off-by: Amulya Varote <[email protected]>
1 parent 7520670 commit 35c0183

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/fossa.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: fossa
2+
on:
3+
repository_dispatch:
4+
types: [fossa]
5+
push:
6+
branches:
7+
- master
8+
- release-*
9+
- feature/*
10+
tags:
11+
- v*
12+
pull_request:
13+
branches:
14+
- master
15+
- release-*
16+
- feature/*
17+
workflow_dispatch: {}
18+
jobs:
19+
fossa-scan:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: "Checkout code"
23+
uses: actions/checkout@v3
24+
25+
- name: "Run FOSSA Scan"
26+
uses: fossas/fossa-action@main # Use a specific version if locking is preferred
27+
with:
28+
api-key: b88e1f4287c3108c8751bf106fb46db6 # This is a PUSH ONLY token that is safe to be shared with the public

0 commit comments

Comments
 (0)