-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 1.05 KB
/
gitarmor-scheduled.yml
File metadata and controls
43 lines (36 loc) · 1.05 KB
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
40
41
42
43
name: Run GitArmor Action - Scheduled
on:
schedule:
- cron: "0 0 * * *"
jobs:
run-gitarmor:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.GITARMOR_APP_ID }}
private-key: ${{ secrets.GITARMOR_APP_KEY }}
owner: ${{ github.repository_owner }}
- name: Checkout policies
uses: actions/checkout@v4
- name: Run GitArmor Action
uses: dcodx/gitarmor@main
id: gitarmor
#env:
# DEBUG: true
with:
repo: ${{ github.repository }}
org: ${{ github.repository_owner }}
token: ${{ steps.app-token.outputs.token }}
level: 'organization_only'
debug: 'false'
policy-dir: './policies'
- name: Print report to Job summary
run: |
cat output-report.md >> $GITHUB_STEP_SUMMARY
- name: Upload the reports as Actions artifact
uses: actions/upload-artifact@v4
with:
name: gitarmor-evaluation-report
path: output-report.*