-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 846 Bytes
/
action.yml
File metadata and controls
26 lines (26 loc) · 846 Bytes
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
name: "Harden Runner"
description: "Security monitoring for the GitHub-hosted runner"
inputs:
allowed-endpoints:
description: "Only these endpoints will be allowed if egress-policy is set to block"
required: false
default: ""
egress-policy:
description: "Policy for outbound traffic, can be either audit or block"
required: false
default: "block"
token:
description: "Used to avoid github rate limiting"
default: ${{ github.token }}
disable-telemetry:
description: "Disable sending telemetry to StepSecurity API, can be set to true or false. This can only be set to true when egress-policy is set to block"
required: false
default: "false"
branding:
icon: "check-square"
color: "green"
runs:
using: "node16"
pre: "dist/pre/index.js"
main: "dist/index.js"
post: "dist/post/index.js"