This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
Semantic PRs Failed #3409
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Semantic PRs Failed | |
on: | |
pull_request: | |
check_suite: | |
types: [completed] | |
jobs: | |
failed-cc: | |
name: Failed Conventional Commits | |
if: > | |
github.event.check_suite.app.name == 'Semantic Pull Request' | |
&& github.event.check_suite.conclusion == 'failure' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: peter-evans/create-or-update-comment@v1 | |
with: | |
issue-number: ${{ github.event.pull_request}} | |
body: | | |
Title does not follow the guidelines of [Conventional Commits](https://www.conventionalcommits.org). | |
Please adjust title before merge. | |