Skip to content

Commit 527fc73

Browse files
committed
Create and merge_group triggers in Github Actions
1 parent e61ad48 commit 527fc73

9 files changed

+16
-1
lines changed

.github/workflows/check-cabal-files.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Check cabal files
33
on:
44
push:
55
create:
6+
merge_group:
67

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

.github/workflows/check-git-dependencies.yml

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

33
on:
44
push:
5+
create:
6+
merge_group:
57

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

.github/workflows/check-hlint.yml

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

33
on:
44
push:
5+
create:
6+
merge_group:
57

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

.github/workflows/check-mainnet-config.yml

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

33
on:
44
push:
5+
create:
6+
merge_group:
57

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

.github/workflows/check-nix-config.yml

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

33
on:
44
push:
5+
create:
6+
merge_group:
57

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

.github/workflows/haskell-linux.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Haskell Linux CI
33
on:
44
push:
55
create:
6+
merge_group:
67

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

.github/workflows/haskell.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Haskell Windows & Mac CI
33
on:
44
push:
55
create:
6+
merge_group:
67

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

.github/workflows/markdown-links-ci-check.yml

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

3-
on: push
3+
on:
4+
push:
5+
create:
6+
merge_group:
47

58
# Limit concurrent runs of this workflow within a single PR
69
concurrency:

.github/workflows/stylish-haskell.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Check Stylish Haskell
33
on:
44
push:
55
create:
6+
merge_group:
67

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

0 commit comments

Comments
 (0)