Skip to content

Commit

Permalink
L1-55 Run check pr title only on pull request (#1743)
Browse files Browse the repository at this point in the history
# Description

The change
a0faac5
had a bug that ran the `PR check title` job also on the `merge_group`
trigger. It should run only on a PR.

It fixes
https://github.com/Cardinal-Cryptography/aleph-node/actions/runs/9188416432/job/25268221144

## Type of change

Please delete options that are not relevant.

- Bug fix (non-breaking change which fixes an issue)
  • Loading branch information
Marcin-Radecki authored May 22, 2024
1 parent 8d8b355 commit e01ff05
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/on-pull-request-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
check-pr-title:
name: Check PR title
runs-on: ubuntu-20.04
if: github.event_name == 'pull_request'
steps:
- name: Check PR title
uses: Cardinal-Cryptography/github-actions/check-pr-title@v7
Expand Down

0 comments on commit e01ff05

Please sign in to comment.