-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
29 lines (29 loc) · 925 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: 'GitHub Actions Variable Groups'
author: 'Brett Logan'
description: 'Allows for the central management of environment variables across multiple GitHub Actions workflows'
inputs:
groups:
description: A list of variable group files or directories containing variable group files.
required: true
org:
description: The GitHub org containing where the repo is hosted.
required: true
default: ${{ github.repository_owner }}
repo:
description: The repo where the GitHub files under groups are hosted.
required: true
default: ${{ github.event.repository.name }}
url:
description: GitHub API URL if using GitHub Server or AE
required: false
default: https://api.github.com
token:
description: GitHub PAT used to access the repo.
required: true
default: ${{ github.token }}
branding:
icon: align-left
color: purple
runs:
using: node20
main: dist/index.js