Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 712 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 712 Bytes

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:

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"