wip: Upgrade astroport messaging to v5 #12
Workflow file for this run
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: Conventional commit check | |
on: | |
pull_request: | |
workflow_dispatch: | |
# This workflow denies a push on a pull request if all pushed commits are not following | |
# the conventional commits standard. | |
jobs: | |
conv-commit: | |
name: Enforce conventional commit messages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout pull request | |
uses: actions/checkout@v3 | |
- name: Check all commit messages for adherence | |
uses: bilalshaikh42/action-conventional-commits@v2.0.1 |