https://github.com/manifoldco/autotagger
Autotagging for the masses
https://github.com/manifoldco/autotagger
Last synced: 3 months ago
JSON representation
Autotagging for the masses
- Host: GitHub
- URL: https://github.com/manifoldco/autotagger
- Owner: manifoldco
- Created: 2019-10-08T12:26:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T13:46:57.000Z (over 5 years ago)
- Last Synced: 2025-05-08T08:03:23.298Z (5 months ago)
- Language: Go
- Homepage: https://www.manifold.co
- Size: 16.6 KB
- Stars: 3
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Manifold Github Auto-Tagging Bot
Auto-tags releases.
```
NEVER_FAIL never returns an error. Returns EX_CONFIG instead.
NO_EX_CONFIG disables the special Github EX_CONFIG return, returning
success instead. This prevents parallel actions from being
interrupted
```To use with Github Actions:
```yaml
on:
pull_request:
types: [ closed ]
name: autotag versions
jobs:
autotag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: autotag
uses: manifoldco/autotagger@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEVER_FAIL: "true"
NO_EX_CONFIG: "true"
```