Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate retrospective issue creation #4849

Merged
merged 4 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
gaiksaya marked this conversation as resolved.
Show resolved Hide resolved

### **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.
10 changes: 10 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,20 @@ 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
Loading