From 94c1b988ca0cd4ee8d22fd4fab61b8a65699b86a Mon Sep 17 00:00:00 2001 From: Chris Wayne Date: Mon, 1 Nov 2021 20:46:33 -0400 Subject: [PATCH] Enable Epics Action to automatically check off child issues in an epic (#4353) * Enable Epics Action to automatically check off child issues in an epic Signed-off-by: Chris Wayne --- .github/workflows/epic.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/epic.yaml diff --git a/.github/workflows/epic.yaml b/.github/workflows/epic.yaml new file mode 100644 index 0000000000..0e07c8b53a --- /dev/null +++ b/.github/workflows/epic.yaml @@ -0,0 +1,15 @@ +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: epic + auto-close-epic: false \ No newline at end of file