Skip to content
This repository has been archived by the owner on Nov 12, 2020. It is now read-only.

Latest commit

 

History

History
54 lines (39 loc) · 2.09 KB

README.md

File metadata and controls

54 lines (39 loc) · 2.09 KB

Autobranch

Summary Badge
Release Stability Autobadge Release Stability
Latest Release Autobadge Latest Release
Code Quality Maintainability
Code Coverage Test Coverage

Introduction

Autobranch is a GitHub Action for the issues event. It automatically creates issue/<number>-<short_description>-style issues, e.g.: issue/311-migrate-editor.

Usage

Note: You should never expect stability from the master branch. Please specify a version from the releases instead.

You must add Autobranch to a workflow that uses the issues event. See below:

name: my-workflow

on:
  issues:
    types: [assigned]

jobs:
  autobranch:
    runs-on: ubuntu-latest
    steps:
      - uses: autosuite/autobranch@master
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}

Configuration

You can see all configuration in the action.yml file.

There is no special configuration for this Action; just the token. This may be subject to change as the need arises.

Documentation

If you would like to contribute to this project, please read our contributors documentation and our code of conduct. The license we use for this project is here: LICENSE.