forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
when committed then issues with label `kind/epic` will on open/edit/labeling have a section like: ``` <!-- EPIC:DATA #23 quarkusio#445 #44 --> ``` Expanded to a task list with link to issue + title header. the checkbox will reflect wether open or closed at the time of edit of the issue. (we can potentially improve that in future) Includes update to epic template and disables debug printing as to speed things up a bit.
- Loading branch information
1 parent
c2f1a8c
commit ea4907d
Showing
3 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
name: auto label | ||
steps: | ||
- name: Debug Action | ||
uses: hmarr/[email protected] | ||
# - name: Debug Action | ||
# uses: hmarr/[email protected] | ||
- name: issuelabeler | ||
continue-on-error: true | ||
uses: docker://maxandersen/jbang-issuelabeler | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: "Epic issue lists" | ||
on: | ||
issues: | ||
types: [opened, edited, labeled] | ||
|
||
jobs: | ||
autolabel: | ||
runs-on: ubuntu-latest | ||
name: auto label | ||
steps: | ||
# - name: Debug Action | ||
# uses: hmarr/[email protected] | ||
- name: epicmaker | ||
uses: docker://maxandersen/jbang-epic-maker | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ISSUE_GITHUB_TOKEN }} | ||
BOTNAME: quarkusbot | ||
EPICLABEL: kind/epic |