mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
94c1b988ca
* Enable Epics Action to automatically check off child issues in an epic Signed-off-by: Chris Wayne <cwayne18@gmail.com>
15 lines
354 B
YAML
15 lines
354 B
YAML
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 |