Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cb80/delrel
Delete GitHub releases by tag name
https://github.com/cb80/delrel
actions delete github release
Last synced: about 1 month ago
JSON representation
Delete GitHub releases by tag name
- Host: GitHub
- URL: https://github.com/cb80/delrel
- Owner: cb80
- License: mit
- Created: 2021-05-18T18:27:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-02T13:34:44.000Z (6 months ago)
- Last Synced: 2024-11-11T15:12:07.380Z (about 2 months ago)
- Topics: actions, delete, github, release
- Language: TypeScript
- Homepage: https://github.com/marketplace/actions/delete-a-release-by-tag-name
- Size: 1.27 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![CI/CD](https://github.com/cb80/delrel/workflows/CI/CD/badge.svg)
[![](https://img.shields.io/badge/GitHub-Marketplace-blue)](https://github.com/marketplace/actions/delete-a-release-by-tag-name)# Description
This action can delete releases by tag name. It supports GitHub Enterprise.
# Examples
```
uses: cb80/delrel@latest
with:
tag: latest
```Use a different token:
```
uses: cb80/delrel@latest
with:
tag: latest
token: ${{ secrets.MY_TOKEN }}
```# Inputs
| Option | Use | Default | Description |
|-----------|-----------|------------------------|-------------|
| `tag` | mandatory | | The tag which identifies the release. |
| `token` | optional | `secrets.GITHUB_TOKEN` | The token for authentication and authorization. |# Credits
This action is inspired by the official [typescript action template][tstpl].
[tstpl]: https://github.com/actions/typescript-action