Skip to content

Commit

Permalink
Automate retrospective issue creation (#4849)
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
  • Loading branch information
gaiksaya authored Jul 16, 2024
1 parent 8de7d53 commit 3855aac
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/release_retrospective_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Release retrospective
title: "[Retrospective] Release Version {{ env.VERSION }}"
labels: untriaged, release, v{{ env.VERSION }}
---

### **Related release issue?**
{{ env.RELEASE_ISSUE_URL }}

### **How to use this issue?**
Please add comments to this issue, they can be small or large in scope. Honest feedback is important to improve our processes, suggestions are also welcomed but not required.

### **What will happen to this issue post release?**
There will be a discussion(s) about how the release went and how the next release can be improved. Then this issue will be updated with the notes of that discussion along side action items.
15 changes: 14 additions & 1 deletion .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,24 @@ jobs:
release_version: ${{ fromJson(needs.list-manifest-versions.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: dblock/create-a-github-issue@v3.0.0
- name: Create release issue
uses: dblock/create-a-github-issue@v3.0.0
id: release-issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ matrix.release_version }}
with:
search_existing: all
update_existing: false
filename: .github/ISSUE_TEMPLATE/release_template.md
- name: Create retrospective issue
uses: dblock/create-a-github-issue@v3.0.0
if: ${{ steps.release-issue.outputs.status == 'created' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ matrix.release_version }}
RELEASE_ISSUE_URL: ${{ steps.release-issue.outputs.url }}
with:
search_existing: all
update_existing: false
filename: .github/ISSUE_TEMPLATE/release_retrospective_template.md

0 comments on commit 3855aac

Please sign in to comment.