This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
fix: use run_python to calculate genesis time #398
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
# Check PR title for conventional commits | |
name: Check PR title | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
# cancel redundant builds | |
concurrency: | |
group: "title-checker-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
title_check: | |
if: contains(github.head_ref, 'release-please') != true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: aslafy-z/conventional-pr-title-action@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |