Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smashedr/update-tags-action
https://github.com/smashedr/update-tags-action
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/smashedr/update-tags-action
- Owner: smashedr
- Created: 2024-06-06T07:04:06.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-06T20:51:03.000Z (5 months ago)
- Last Synced: 2024-06-07T08:30:13.695Z (5 months ago)
- Language: JavaScript
- Size: 317 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VirusTotal Action
Update Tags on Release for Semantic Versions
> [!NOTE]
> Please submit a [Feature Request](https://github.com/cssnr/virustotal-action/discussions/categories/feature-requests)
> for new features
> or [Open an Issue](https://github.com/cssnr/virustotal-action/issues) if you find any bugs.## Inputs
| input | required | default | description |
|--------|----------|---------|----------------------|
| token | Yes | - | secrets.GITHUB_TOKEN |
| prefix | No | v | Tag Prefix |
| major | No | true | Update Major Tag |
| minor | No | true | Update Minor Tag |```yaml
- name: "Update Tags"
uses: cssnr/update-tags-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
prefix: "v"
major: true
minor: true
```