test: refactor management_canister tests #1419
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: Check PR title | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
schedule: | |
- cron: "0 4 * * 3,7" # 4 a.m. UTC every Wed and Sun, keep actions-cache available | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dfinity/conventional-pr-title-action@v2.2.3 | |
with: | |
success-state: Title follows the specification. | |
failure-state: Title does not follow the specification. | |
context-name: conventional-pr-title | |
preset: conventional-changelog-angular@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |