Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skimit/validate-pull-request-title-github-action
GitHub Action that validates any Pull Request title to verify if it contains the ticket ID followed by a small description.
https://github.com/skimit/validate-pull-request-title-github-action
actions github-actions
Last synced: about 1 month ago
JSON representation
GitHub Action that validates any Pull Request title to verify if it contains the ticket ID followed by a small description.
- Host: GitHub
- URL: https://github.com/skimit/validate-pull-request-title-github-action
- Owner: skimit
- License: mit
- Created: 2021-05-26T10:38:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-16T08:15:08.000Z (9 months ago)
- Last Synced: 2024-10-13T23:21:07.617Z (3 months ago)
- Topics: actions, github-actions
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Pull Request Title Validation GitHub Action
This action validates any Pull Request title to verify if it contains the ticket ID followed by a small description.## Inputs
### `pr-title`
**Required** The title of the Pull Request.
## Example usage
```yaml
name: 'Validate Pull Request Title'
on:
pull_request:
types:
- opened
- reopened
- edited
- synchronizejobs:
validate-pr-title:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Pull Request Title Validation
uses: skimit/[email protected]
with:
pr-title: "${{ github.event.pull_request.title }}"
```## Motivation
[Deeper Insights](https://deeperinsights.com)™ mission is to empower people to use data more effectively and to demystify artificial intelligence. Rather than holding up the common narrative of machines replacing humans, we see how machines can help humans to have easier lives and better businesses. Creating bespoke solutions is part of our DNA. We came up with this solution to help our specialists focus on delivering the best version of their work, using automation to take care of the repetitive tasks.## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.## License
[MIT](https://choosealicense.com/licenses/mit/)