-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 1010 Bytes
/
action.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
name: Roadie Tech Insights Action
author: RoadieHQ
description: "Runs Roadie Tech Insights Scorecards and Checks against a Pull Request"
inputs:
api-token:
description: 'An API token added as a Bearer token to the Roadie API requests'
required: true
catalog-info-path:
description: "Path to the yaml file representing the Backstage entity linked to this repository/PR. Defaults to `./catalog-info.yaml`"
required: false
default: './catalog-info.yaml'
scorecard-id:
description: 'The id of the scorecard to run'
required: false
check-id:
description: 'The id of the check to run'
required: false
entity-selector:
description: 'An index of the entity to use from a multiyaml manifest file.'
required: false
repo-token:
description: "A GitHub token for API access. You can use secrets.GITHUB_TOKEN env variable for the default token."
required: true
branding:
icon: 'check-circle'
color: 'orange'
runs:
using: 'node20'
main: 'dist/index.js'