Skip to content

Commit

Permalink
build(core): fix add back lint pr to merge queue? (#1287)
Browse files Browse the repository at this point in the history
**Motivation**
Somehow removing this caused the merge queue to not be triggered :/
  • Loading branch information
mpaulucci authored Nov 26, 2024
1 parent cbbb24b commit 859540c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/lint_pr_title.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Lint PR title

on:
merge_group:
pull_request_target:
types:
- opened
Expand All @@ -10,6 +11,8 @@ on:
jobs:
main:
name: Validate PR title
# Skip step for events that are not pull request targets as it currenlty fails when ran in the merge queue
if: github.event_name == 'pull_request_target'
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
Expand Down

0 comments on commit 859540c

Please sign in to comment.