forked from GeekyEggo/delete-artifact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 795 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
name: Gitea Delete Artifact
description: Delete artifacts created within the workflow run.
inputs:
name:
description: The name of the artifact to delete; multiple names can be supplied on new lines.
required: true
token:
description: GitHub token with read and write access to actions for the repository.
required: false
default: ${{ github.token }}
deprecationMessage: Token is no longer required.
useGlob:
description: Indicates whether the name, or names, should be treated as glob patterns.
required: false
default: "true"
failOnError:
description: Indicates whether the action should fail upon encountering an error.
required: false
default: "true"
runs:
using: node20
main: ./dist/index.js
branding:
icon: trash-2
color: red