An open API service indexing awesome lists of open source software.

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

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"
```