forked from ame-yu/action-delete-latest-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
21 lines (20 loc) · 798 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: "Delete Release"
description: "Delete a release identified by its tag."
author: "kopp"
inputs:
tag_name:
description: "The tag of the release (as can be seen in the URL of an artefact: https://github.com/<org>/<repo>/releases/download/<TAG_NAME>/<artefact>)."
required: true
github_repository:
description: "The repository containing the release in the form <org>/<repo> (as can be seen in the URL of a repository: https://github.com/<org>/<repo>)."
required: false
default: "${{ github.repository }}"
env:
"GITHUB_TOKEN": "Authentication token, as provided by Github Actions secrets.GITHUB_TOKEN."
runs:
using: "node12"
main: "dist/index.js"
branding:
color: "orange"
icon: "delete"