Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Commit bb8324f

Browse files
committed
Add Mend workflow
New dependency scanning workflow for Mend.
1 parent 14eece7 commit bb8324f

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

.github/workflows/fossa.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ on:
66
- main
77
- release-*
88
paths-ignore:
9-
- 'docs/**'
10-
- 'examples/**'
11-
- '**.md'
9+
- docs/**
10+
- examples/**
1211
workflow_dispatch:
1312

1413
concurrency:

.github/workflows/mend.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Mend
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- release-*
8+
paths-ignore:
9+
- docs/**
10+
- examples/**
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: ${{ github.ref_name }}-mend
15+
cancel-in-progress: true
16+
17+
permissions:
18+
contents: read
19+
20+
jobs:
21+
scan:
22+
name: Mend
23+
runs-on: ubuntu-22.04
24+
if: ${{ github.event.repository.fork == false }}
25+
steps:
26+
- name: Checkout Repository
27+
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
28+
- name: Scan
29+
uses: TheAxZim/Whitesource-Scan-Action@ae848d3fc813c97f7e466da97ccd2b12b4bad9b8
30+
with:
31+
wssURL: ${{ secrets.WSS_URL }}
32+
apiKey: ${{ secrets.WSS_NGINX_TOKEN }}
33+
productName: service-mesh_${{ github.ref_name }}
34+
projectName: nginx-service-mesh

0 commit comments

Comments
 (0)