Chore: Integration test for the bug not possible to use OpenTofu as b… #521
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: "Validation" | |
on: | |
pull_request: | |
types: | |
- "opened" | |
- "edited" | |
- "reopened" | |
jobs: | |
check-commit-message: | |
name: "PR Title" | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 1 | |
steps: | |
- name: Check Title | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^.*(Feat|Chore|Fix):.*$' | |
error: 'You need at least one of "Feat:|Chore:|Fix:" in PR title prefix.' | |
excludeDescription: true |