Skip to content

Commit

Permalink
chore(deps): allow WEKAPP tickets in lint (#290)
Browse files Browse the repository at this point in the history
### TL;DR
This change introduces an additional scope 'WEKAPP-\d+' to the PR title linting configuration in our GitHub workflow. This ensures that PR titles can include the WEKAPP identifier.

### What changed?
- Updated the lint_pr.yaml file to recognize and accept 'WEKAPP-\d+' as a valid scope in PR titles.

### How to test?
- Create a PR with 'WEKAPP-xxx' in the title and verify that the linting workflow does not flag it as invalid.

### Why make this change?
This update is necessary to allow PRs that include WEKAPP identifiers in their title, facilitating better tracking and categorization of tasks related to the WEKAPP project.

---
  • Loading branch information
sergeyberezansky authored Jul 31, 2024
2 parents f91bd3b + 7a1cd02 commit d4584fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
scopes: |
deps
CSI-\d+
WEKAPP-\d+
# Configure that a scope must always be provided.
requireScope: true
# Configure which scopes are disallowed in PR titles (newline-delimited).
Expand Down

0 comments on commit d4584fd

Please sign in to comment.