https://github.com/padupe/check-pr-title
Action que valida a estrutura do Título de uma Pull Request
https://github.com/padupe/check-pr-title
Last synced: 8 months ago
JSON representation
Action que valida a estrutura do Título de uma Pull Request
- Host: GitHub
- URL: https://github.com/padupe/check-pr-title
- Owner: padupe
- Created: 2021-11-17T18:12:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-21T23:32:00.000Z (over 4 years ago)
- Last Synced: 2025-02-06T13:34:42.872Z (over 1 year ago)
- Language: JavaScript
- Size: 373 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Validação de estrutura do Título de uma PR
_Action que valida a estrutura do Título de uma Pull Request_
#
*PADRÃO:*
```bash
tipo(PREFIX-00): Descrição.
```
#
_*Exemplo:*_
```bash
feat(ISSUE-159): Implements Swagger.
```
#
## Comandos Úteis
### Script
Compilar a lógica:
```bash
ncc build index.js --license licenses.txt
```
### Git
Adicionar Tag:
```bash
git tag -a -m "Your Message" v{number}
```
Apagar todas as tag's no ambiente local:
```bash
git tag -d $(git tag -l)
```
Apagar todas as tag's remotas:
```bash
git push origin --delete $(git tag -l)
```
Realizar o push das Tag's:
```bash
git push --follow-tags
```