chore: standardize PR title format and ensure description starts with lowercase

This commit is contained in:
Victor Santos
2025-11-28 17:16:53 -03:00
parent 793e995f57
commit 5967900667
2 changed files with 8 additions and 8 deletions

View File

@@ -19,7 +19,7 @@
## Checklist ## Checklist
- [ ] Title follows format: `type(scope): Short description` (scope is optional, e.g., `fix: Prevent crash on sync` or `fix(api): Handle null response`) - [ ] Title follows the [conventional commit](https://www.conventionalcommits.org/en/v1.0.0/#summary) format: `type(scope): short description` (scope is optional, e.g., `fix: prevent crash on sync` or `fix(api): handle null response`).
- [ ] Tested locally - [ ] Tested locally
- [ ] Updated docs (if needed) - [ ] Updated docs (if needed)
- [ ] Read the [contributing guide](https://infisical.com/docs/contributing/getting-started/overview) - [ ] Read the [contributing guide](https://infisical.com/docs/contributing/getting-started/overview)

View File

@@ -18,11 +18,11 @@ jobs:
// Valid PR types based on pull_request_template.md // Valid PR types based on pull_request_template.md
const validTypes = ['fix', 'feature', 'improvement', 'breaking', 'docs', 'chore']; const validTypes = ['fix', 'feature', 'improvement', 'breaking', 'docs', 'chore'];
// Regex pattern: type(optional-scope): Short description // Regex pattern: type(optional-scope): short description
// - Type must be one of the valid types // - Type must be one of the valid types
// - Scope is optional, must be in parentheses, lowercase alphanumeric with hyphens // - Scope is optional, must be in parentheses, lowercase alphanumeric with hyphens
// - Followed by colon, space, and description // - Followed by colon, space, and description (must start with lowercase letter)
const pattern = new RegExp(`^(${validTypes.join('|')})(\\([a-z0-9-]+\\))?: .+$`); const pattern = new RegExp(`^(${validTypes.join('|')})(\\([a-z0-9-]+\\))?: [a-z].+$`);
if (!pattern.test(title)) { if (!pattern.test(title)) {
const errorMessage = ` const errorMessage = `
@@ -30,7 +30,7 @@ jobs:
Your PR title: \`${title}\` Your PR title: \`${title}\`
**Expected format:** \`type(scope): Short description\` **Expected format:** \`type(scope): short description\` (description must start with lowercase)
**Valid types:** **Valid types:**
- \`fix\` - Bug fixes - \`fix\` - Bug fixes
@@ -43,9 +43,9 @@ jobs:
**Scope:** Optional, short identifier in parentheses (e.g., \`(api)\`, \`(auth)\`, \`(ui)\`) **Scope:** Optional, short identifier in parentheses (e.g., \`(api)\`, \`(auth)\`, \`(ui)\`)
**Examples:** **Examples:**
- \`fix: Prevent crash on sync\` - \`fix: prevent crash on sync\`
- \`fix(api): Handle null response from auth endpoint\` - \`fix(api): handle null response from auth endpoint\`
- \`docs(cli): Update installation guide\` - \`docs(cli): update installation guide\`
`; `;
core.setFailed(errorMessage); core.setFailed(errorMessage);