Skip to content

Commit a3ccef4

Browse files
authored
Merge pull request #4942 from input-output-hk/newhoggy/create-and-merge_group-triggers-in-github-actions
Create and merge_group triggers in Github Actions
2 parents 6a207a1 + eac2eb4 commit a3ccef4

9 files changed

+11
-5
lines changed

Diff for: .github/workflows/check-cabal-files.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check cabal files
22

33
on:
44
push:
5-
create:
5+
merge_group:
66

77
# Limit concurrent runs of this workflow within a single PR
88
concurrency:

Diff for: .github/workflows/check-git-dependencies.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Check git dependencies
22

33
on:
44
push:
5+
merge_group:
56

67
# Limit concurrent runs of this workflow within a single PR
78
concurrency:

Diff for: .github/workflows/check-hlint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Check HLint
22

33
on:
44
push:
5+
merge_group:
56

67
# Limit concurrent runs of this workflow within a single PR
78
concurrency:

Diff for: .github/workflows/check-mainnet-config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Check mainnet configuration
22

33
on:
44
push:
5+
merge_group:
56

67
# Limit concurrent runs of this workflow within a single PR
78
concurrency:

Diff for: .github/workflows/check-nix-config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Check nix configuration
22

33
on:
44
push:
5+
merge_group:
56

67
# Limit concurrent runs of this workflow within a single PR
78
concurrency:

Diff for: .github/workflows/haskell-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Haskell Linux CI
22

33
on:
44
push:
5-
create:
5+
merge_group:
66

77
# Limit concurrent runs of this workflow within a single PR
88
concurrency:

Diff for: .github/workflows/haskell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Haskell Windows & Mac CI
22

33
on:
44
push:
5-
create:
5+
merge_group:
66

77
# Limit concurrent runs of this workflow within a single PR
88
concurrency:

Diff for: .github/workflows/markdown-links-ci-check.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Check Markdown links
22

3-
on: push
3+
on:
4+
push:
5+
merge_group:
46

57
# Limit concurrent runs of this workflow within a single PR
68
concurrency:

Diff for: .github/workflows/stylish-haskell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check Stylish Haskell
22

33
on:
44
push:
5-
create:
5+
merge_group:
66

77
# Limit concurrent runs of this workflow within a single PR
88
concurrency:

0 commit comments

Comments
 (0)