Skip to content

Commit

Permalink
Automate retrospective issue creation
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <gaiksaya@amazon.com>
  • Loading branch information
gaiksaya committed Jul 15, 2024
1 parent 5124b1a commit a5a8907
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
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 [Retro Board](https://github.com/orgs/opensearch-project/projects/205/views/4), 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.
11 changes: 11 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,21 @@ jobs:
steps:
- uses: actions/checkout@v3
- 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
- uses: dblock/create-a-github-issue@v3.0.0
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

Check failure on line 46 in .github/workflows/releases.yml

View workflow job for this annotation

GitHub Actions / yaml-lint

46:1 [empty-lines] too many blank lines (1 > 0)

0 comments on commit a5a8907

Please sign in to comment.