An open API service indexing awesome lists of open source software.

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

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:(.*)?"]'
```