Skip to content

Commit

Permalink
ci: Don't trigger on merge_group
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Mar 15, 2024
1 parent d2c7cbb commit aed423e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
pull_request:
branches: ["main"]
paths-ignore: ["*.md", "*.png", "*.svg", "LICENSE-*"]
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
Expand Down Expand Up @@ -36,7 +35,7 @@ jobs:
version: stable

- name: Find incremental mutants
if: github.event_name == 'pull_request' || github.event_name == 'merge_group'
if: github.event_name == 'pull_request'
run: |
git diff origin/${{ github.base_ref }}.. > pr.diff
set -o pipefail
Expand Down

0 comments on commit aed423e

Please sign in to comment.