https://github.com/androidx/check-pr-format-action
GitHub Action that lints the pull request body to ensure it includes Tests: and Bug: stanzas
https://github.com/androidx/check-pr-format-action
Last synced: 10 months ago
JSON representation
GitHub Action that lints the pull request body to ensure it includes Tests: and Bug: stanzas
- Host: GitHub
- URL: https://github.com/androidx/check-pr-format-action
- Owner: androidx
- License: apache-2.0
- Created: 2020-10-19T20:52:04.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T21:43:39.000Z (over 2 years ago)
- Last Synced: 2024-05-01T21:20:25.179Z (almost 2 years ago)
- Language: TypeScript
- Size: 1.48 MB
- Stars: 3
- Watchers: 5
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Check Pull Request Format Action
A GitHub action that ensures that pull requests follow conventions.
## Usage
Use a snippet like this to setup the Webhook step in your `YAML` file.
```yaml
- name: 'Validate Pull Request'
uses: 'tikurahul/check-pr-format-action@master'
with:
# Enforces a `Test: ` in the pull request
# This regular expressions are evaluated for every line in the pull request body.
checks: '["(.*)?Test:(.*)?"]'
```