-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 930 Bytes
/
action.yml
File metadata and controls
25 lines (25 loc) · 930 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
name: Auto update your GitHub Action configuration files
description: Updates the GitHub Action configuration `.yml` files if necessary
branding:
icon: "arrow-down-circle"
color: "green"
inputs:
token:
description: 'The repository token is used to request the remote GitHub Actions configuration-files'
required: true
actions-configuration-files:
description: 'GitHub Action configuration filename with path to the location in your remote repository'
required: true
source-repository:
description: 'GitHub repository where your GitHub Action configuration is located'
required: true
source-ref:
description: 'Branch/Commit/Tag from source repository where to get updated GitHub Actions configuration files'
default: 'master'
required: false
outputs:
updated:
description: 'Is set to `true` if one configuration file is changed'
runs:
using: 'node20'
main: 'dist/index.js'