-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
37 lines (36 loc) · 1.53 KB
/
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
30
31
32
33
34
35
36
37
name: 'GitHub Action Atmos Terraform Drift Detection'
description: 'GitHub Action Atmos Terraform Drift Detection'
author: [email protected]
branding:
icon: 'server'
color: 'white'
inputs:
max-opened-issues:
description: "Number of open drift detection issues. Use `-1` to open unlimited number of issues. Default: 10"
default: '10'
required: false
assignee-users:
description: "Comma-separated list of users to assign issues to. This is used only when issue is getting created."
required: false
default: ""
assignee-teams:
description: "Comma-separated list of teams to assign issues to. You have to pass github token with `read:org` scope. This is used only when issue is getting created."
required: false
default: ""
labels:
description: "Comma-separated list of additional labels to assign issues to."
required: false
default: ""
process-all:
description: "Process all issues or only the ones that relates to affected stacks. Default: false"
required: false
default: "false"
token:
description:
Used to pull node distributions for Atmos from Cloud Posse's GitHub repository. Since there's a default, this is typically
not supplied by the user. When running this action on github.com, the default value is sufficient. When running on
GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
default: ${{ github.server_url == 'https://github.com' && github.token || '' }}
runs:
using: 'node20'
main: 'src/index.js'