Remove outdated GitHub release issue template#3286
Conversation
📝 WalkthroughWalkthroughThis update modifies the GitHub release issue templates for the Changes
Possibly related PRs
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/ISSUE_TEMPLATE/release-template.md (1)
44-46: Use proper Markdown headings for step titles
Markdownlint (MD036) flags emphasis as headings on these lines. To improve accessibility and maintain consistency, convert bolded step titles into actual Markdown headings. For example:- **3. Create release and deploy to WordPress.org** + ### 3. Create release and deploy to WordPress.orgApply the same pattern to all numbered steps (
1.,2., etc.) under the “Release process” section.🧰 Tools
🪛 markdownlint-cli2 (0.17.2)
44-44: Emphasis used instead of a heading
null(MD036, no-emphasis-as-heading)
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
.github/ISSUE_TEMPLATE/release-template-new.md(0 hunks).github/ISSUE_TEMPLATE/release-template.md(1 hunks)
💤 Files with no reviewable changes (1)
- .github/ISSUE_TEMPLATE/release-template-new.md
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
.github/ISSUE_TEMPLATE/release-template.md
40-40: Emphasis used instead of a heading
null
(MD036, no-emphasis-as-heading)
44-44: Emphasis used instead of a heading
null
(MD036, no-emphasis-as-heading)
🔇 Additional comments (1)
.github/ISSUE_TEMPLATE/release-template.md (1)
36-37:Details
✅ Verification successful
Adopt automated version bump Action
The new step correctly replaces the manual PHP script with thebump-version.ymlGitHub Action to bump versions and update the changelog. This will reduce manual errors and keep releases consistent.Please verify that the referenced workflow files actually exist in
.github/workflows/. You can run this quick check locally:
🏁 Script executed:
#!/bin/bash # Description: Verify required GitHub Actions workflows are present set -e for wf in bump-version.yml release-plugin.yml; do if [ ! -f .github/workflows/$wf ]; then echo "ERROR: Missing workflow .github/workflows/$wf" >&2 exit 1 fi done echo "✔ All referenced workflows found."Length of output: 287
Automated version bump Action workflows verified
The
bump-version.ymlandrelease-plugin.ymlworkflows are present under.github/workflows/, so the new automated version bump step will work as intended. This replaces the manual PHP script for bumping versions and updating the changelog, reducing errors and ensuring consistency.
- File: .github/ISSUE_TEMPLATE/release-template.md (lines 36–37)
…elease-issue-template" (40ada37)
Description
With this PR we're removing our older GitHub release issue template, effectively replacing it with our new one.
Motivation and context
Keep our code updated, reduce noise and possible confusion of which template should be used.
How has this been tested?
No functionality changes.
Summary by CodeRabbit