forked from rickstaa/action-create-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 732 Bytes
/
Copy pathaction.yml
File metadata and controls
26 lines (26 loc) · 732 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
26
name: "Create/Update tag"
description: "Creates or updates a tag for a given commit."
author: "Rick Staa"
inputs:
github_token:
description: "GITHUB_TOKEN. Optional if you use checkout@v2 action."
default: "${{ github.token }}"
tag:
description: "Tag you want to create or update."
required: true
message:
description: "Tag message."
required: false
commit_sha:
description: The commit SHA hash on which you want to push the tag. Uses latest commit by default.
required: false
force_push_tag:
description: "Optional. Force push the tag. Defaults to 'false'."
required: false
default: "false"
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: "tag"
color: "blue"