Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

fix: configure merge queue #1017

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: CI checks

on: [push]
on:
push:
branches:
- "main"
merge_group:
pull_request:

jobs:
build-and-test:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Cypress CI

# Control when the action will run
on:
# Triggers the workflow on push events except for the main branch
push:
branches:
- "main"
merge_group:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand Down
Loading