Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
bookmark

GitHub Action

Epic issues for GitHub

v1.1.5

Epic issues for GitHub

bookmark

Epic issues for GitHub

Automatically update task list when referenced issue is closed

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Epic issues for GitHub

uses: cloudaper/[email protected]

Learn more about this action in cloudaper/epics-action

Choose a version

Epic issues for GitHub

This action allows you to create epic issues on GitHub. Simply label an issue as epic and reference another issues in the task list:

This is an epic issue. List of individual issues is below:

- [ ] First issue #1
- [ ] Another issue (#2)
- [ ] Last issue #3 (not that important)

The action automatically updates the task list when referenced issue is closed (or reopened).

Inputs

  • github-token
    the GitHub token secret (use ${{ secrets.GITHUB_TOKEN }} in action YAML)
    required
  • epic-label-name
    name of the label you want to use for epic issues
    default: epic
  • auto-close-epic
    auto close epic when all referenced issues are closed
    default: false

Example usage

name: Update epics
on:
  issues:
    types: [opened, closed, reopened]
jobs:
  epics:
    runs-on: ubuntu-latest
    name: Update epic issues
    steps:
      - name: Run epics action
        uses: cloudaper/epics-action@v1
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          epic-label-name: feature
          auto-close-epic: true