Skip to content
Open
Changes from all 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
32 changes: 29 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,37 @@
<!--
⚠️ Acceptance Requirements
**This Pull Request will only be accepted if:**
- ✅ There's an agreement by a maintainer or core contributor in the linked issue to assign it to the author of this PR
-->

<!--
⚠️ Please name your pull request title following this scheme: `type: What you did` this allows us to automatically generate the changelog
Following `type`s are allowed:
- `feat`, for Features
- `fix`, for Bug Fixes
- `docs`, for Documentation
- `ci`, for Automation
- `style`, for Code style changes (formatting, whitespace, etc.)
- `refactor`, for code Refactoring
- `chore`, for Miscellaneous things
- `test`, for Adding or updating tests
- `build`, for Build system or dependency changes
- `revert`, for Reverting previous changes
- `l10n`, for Localization and translation updates
- `taxonomy`, for Changes to product categories and tags taxonomy
Comment on lines +20 to +21
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title type list includes l10n and taxonomy, but the repo’s Semantic PR check runs amannn/action-semantic-pull-request@v6 without any type configuration. That action’s defaults typically only allow the standard conventional-commit types, so these extra types may cause PRs to fail CI. Either remove unsupported types from this template or add an explicit configuration for the semantic PR action so the template matches what CI enforces.

Suggested change
- `l10n`, for Localization and translation updates
- `taxonomy`, for Changes to product categories and tags taxonomy

Copilot uses AI. Check for mistakes.
-->

## Description

- Brief note about the issue
- Brief note about the Pull Request

## Solution

- Mention how your solution resolves the issue

## Related issue(s)
### Large Language Models usage disclosure
<!-- ⚠️ If you used an LLM, please disclose which LLM you used (and its version) and how (agentic, autocomplete). Please confirm you have run the code successfully on your device (or in CI). Also provide a screenshot or video as proof -->

- Fixes #[ISSUE NUMBER]
### Related issue(s) and discussion
<!-- Please add the issue number this issue will close, that way, once your pull request is merged, the issue will be closed as well -->
- Fixes: <!-- #1 Note: you can also use Closes: -->
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The “Fixes” line is currently rendered as just Fixes: with the example issue number inside an HTML comment, which makes it easy to forget the required Fixes #123/Closes #123 syntax and prevents auto-closing if left unchanged. Consider making the placeholder explicit (e.g., Fixes #<issue-number>) so the default text is already valid GitHub closing-keyword format.

Suggested change
- Fixes: <!-- #1 Note: you can also use Closes: -->
- Fixes #<issue-number> <!-- Note: you can also use Closes instead of Fixes -->

Copilot uses AI. Check for mistakes.
Loading