Skip to content

Commit b0569cd

Browse files
committed
Added branding, updated wording
1 parent 5a7f9d6 commit b0569cd

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# 🗑 Delete workflow artifacts
2-
Enables the deletion of artifacts within the workflow run. This can be useful when artifacts are shared across jobs, but are no longer needed when the workflow is complete.
1+
# Delete artifacts
2+
A GitHub Action for deleting artifacts within the workflow run. This can be useful when artifacts are shared across jobs, but are no longer needed when the workflow is complete.
33

44
## Usage
55
```yml
@@ -47,4 +47,4 @@ steps:
4747
4848
4949
## Disclaimer
50-
This action utilizes a preview version of GitHub's runtime API; the API is subject to change at any time which may result in failures of this action.
50+
This action utilizes a preview version of GitHub's runtime API; the API is subject to change at any time which may result in failures of this action.

action.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Delete Artifact
2-
description: Deletes artifacts from a workflow run
2+
description: Delete artifacts created within the workflow run.
33
inputs:
44
name:
55
description: The name of the artifact to delete; multiple names can be supplied on new lines.
@@ -10,4 +10,7 @@ inputs:
1010
default: true
1111
runs:
1212
using: node12
13-
main: ./dist/index.js
13+
main: ./dist/index.js
14+
branding:
15+
icon: trash-2
16+
color: red

0 commit comments

Comments
 (0)