-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (30 loc) · 1.04 KB
/
repo-scan.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: NCTL Scan Pipeline Demo
run-name: ${{ github.actor }} has triggered Scan Action 🚀
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
env:
NIRMATA_TOKEN: ${{ secrets.NIRMATA_TOKEN }}
NIRMATA_URL: ${{ secrets.NIRMATA_URL }}
jobs:
NCTL-Scan-Repository:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Check out main repository code
uses: actions/checkout@v4
- name: Install nctl
uses: nirmata/[email protected]
- name: Check nctl version
run: |
nctl version
- name: nctl login
run: nctl login --url $NIRMATA_URL --userid [email protected] --token $NIRMATA_TOKEN
- name: NCTL Scan Repository
run: |
nctl scan repository --policy-sets pss-baseline,pss-restricted,dockerfile-best-practices --publish-token $NIRMATA_TOKEN --details
- run: echo "🍏 This job's status is ${{ job.status }}."