chore(repo): add 'release' commit scope (#20537)

This commit is contained in:
Austin Fahsl 2023-12-05 10:00:02 -07:00 committed by GitHub
parent 1ed44661f8
commit 38954c4094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -323,6 +323,7 @@ The scope must be one of the following:
- nx-dev - anything related to docs infrastructure - nx-dev - anything related to docs infrastructure
- react - anything React specific - react - anything React specific
- react-native - anything React Native specific - react-native - anything React Native specific
- release - anything related to nx release
- repo - anything related to managing the Nx repo itself - repo - anything related to managing the Nx repo itself
- storybook - anything Storybook specific - storybook - anything Storybook specific
- testing - anything testing specific (e.g., Jest or Cypress) - testing - anything testing specific (e.g., Jest or Cypress)

View File

@ -20,6 +20,7 @@ const scopes = [
{ value: 'react', name: 'react: anything React specific' }, { value: 'react', name: 'react: anything React specific' },
{ value: 'react-native', name: 'react-native: anything React Native specific' }, { value: 'react-native', name: 'react-native: anything React Native specific' },
{ value: 'expo', name: 'expo: anything Expo specific' }, { value: 'expo', name: 'expo: anything Expo specific' },
{ value: 'release', name: 'release: anything related to nx release' },
{ value: 'repo', name: 'repo: anything related to managing the repo itself' }, { value: 'repo', name: 'repo: anything related to managing the repo itself' },
{ value: 'storybook', name: 'storybook: anything Storybook specific' }, { value: 'storybook', name: 'storybook: anything Storybook specific' },
{ value: 'testing', name: 'testing: anything testing specific (e.g. jest or cypress)' }, { value: 'testing', name: 'testing: anything testing specific (e.g. jest or cypress)' },