-
Notifications
You must be signed in to change notification settings - Fork 122
50 lines (47 loc) · 1.92 KB
/
ossf-scorecard-reporting.yml
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
44
45
46
47
48
49
50
name: "OpenSSF Scoring"
on:
# TODO: Restore CRON trigger once https://github.com/nodejs/security-wg/issues/908 is closed
# Manual trigger
workflow_dispatch:
# Permissions required to run this workflow (create issue and commit/push changes)
permissions:
contents: write
pull-requests: write
issues: write
packages: none
jobs:
security-scoring:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v3.3.0
- name: OpenSSF Scorecard Monitor
uses: UlisesGascon/openssf-scorecard-monitor@8551177324543b39670fe3c430012c946a937bd1 # v2.0.0-beta7
with:
scope: tools/ossf_scorecard/scope.json
database: tools/ossf_scorecard/database.json
report: tools/ossf_scorecard/report.md
auto-commit: false
auto-push: false
generate-issue: true
report-tags-enabled: true
issue-title: "OpenSSF Scorecard Report Updated!"
github-token: ${{ secrets.GITHUB_TOKEN }}
max-request-in-parallel: 10
discovery-enabled: true
discovery-orgs: 'nodejs'
- name: Create Pull Request
uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit-message: 'docs: OpenSSF Scorecard Report Updated'
title: OpenSSF Scorecard Report Updated
body: 'OpenSSF Scorecard Report Updated. cc: @nodejs/security-wg'
assignees: ${{ github.actor }}
labels: security-wg-agenda
branch: openssf-scorecard-report-updated
update-pull-request-title-and-body: true