Skip to content

Commit

Permalink
👷 Add merge_group to GitHub Workflows (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
NatoBoram authored Jan 10, 2025
1 parent f1d9e2f commit d7e2d8c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
name: Docker CI

on:
push:
branches: main
tags: v*
pull_request:
branches: main
branches:
- main
merge_group:
branches:
- main
push:
branches:
- main
tags:
- v*

jobs:
docker:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: GitHub Pages

on:
push:
branches: main
branches:
- main

jobs:
build_pages:
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/node.js.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Node.js CI

on:
push:
branches: main
pull_request:
branches: main
branches:
- main
merge_group:
branches:
- main
push:
branches:
- main

jobs:
test:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pnpm-version-patch.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Node.js Patch

on: workflow_dispatch
on:
workflow_dispatch:

jobs:
patch:
Expand Down

0 comments on commit d7e2d8c

Please sign in to comment.