Skip to content

Commit

Permalink
[Internal] Trigger the validate workflow in the merge queue (#709)
Browse files Browse the repository at this point in the history
## Changes
Trigger the validate workflow in the merge queue
  • Loading branch information
hectorcast-db committed Jul 17, 2024
1 parent 3009a6b commit eace94d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ name: Validate Commit Message
on:
pull_request:
types: [opened, synchronize, edited]
merge_group:
types: [checks_requested]

jobs:

validate:
runs-on: ubuntu-latest
# GitHub required checks are shared between PRs and the Merge Queue.
# Since there is no PR title on Merge Queue, we need to trigger and
# skip this test for Merge Queue to succeed.
if: github.event_name == 'pull_request'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit eace94d

Please sign in to comment.