chore: backport semantic PR and commit message checks (#23306)
* chore: use common semantic PR and commit message checks (#23300) After this is merged, the old semantic checker can be disabled, and its config file removed from the repository. * chore: remove previous semantic pull request config (#23305) * chore: remove previous semantic pull request config * chore: update pull request template, conventional commit version Co-authored-by: Jacob Marble <jacobmarble@influxdata.com>pull/23314/head v1.10.0rc0
parent
d01ea61465
commit
8f78c4bb02
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
###### Required only if applicable
|
||||
_You can erase any checkboxes below this note if they are not applicable to your Pull Request._
|
||||
- [ ] [Well-formatted commit messages](https://www.conventionalcommits.org/en/v1.0.0/)
|
||||
- [ ] [InfluxQL Spec](https://github.com/influxdata/influxql/blob/master/README.md) updated
|
||||
- [ ] Provide example syntax
|
||||
- [ ] Update man page when modifying a command
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
name: "Semantic PR and Commit Messages"
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize, edited]
|
||||
|
||||
jobs:
|
||||
semantic:
|
||||
uses: influxdata/validate-semantic-github-messages/.github/workflows/semantic.yml@main
|
||||
Loading…
Reference in New Issue