diff --git a/.github/ISSUE_TEMPLATE/release_retrospective_template.md b/.github/ISSUE_TEMPLATE/release_retrospective_template.md new file mode 100644 index 0000000000..e001c9de54 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/release_retrospective_template.md @@ -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. \ No newline at end of file diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index e7e2994e9a..8fa22d2cd1 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -25,7 +25,9 @@ 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 }} @@ -33,3 +35,14 @@ jobs: 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