-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
38 lines (34 loc) · 941 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
30
31
32
33
34
35
36
37
38
name: "update-tags-action"
description: "Easily create/update one or more tags in a GitHub repository."
author: "jimeh"
branding:
icon: "tag"
color: "blue"
inputs:
tags:
description: "List/CSV of tags to create/update."
required: true
ref:
description: "The SHA or ref to tag. Defaults to SHA of current commit."
required: false
default: "${{ github.sha }}"
when_exists:
description: >-
What to do if the tag already exists. Must be one of 'update', 'skip', or
'fail'.
required: false
default: "update"
github_token:
description: "The GitHub token to use for authentication."
required: false
default: ${{ github.token }}
outputs:
tags:
description: "List of tags that were created/updated."
created:
description: "List of tags that were created."
updated:
description: "List of tags that were updated."
runs:
using: "node16"
main: "dist/index.js"