Skip to content

Commit fa8e9fc

Browse files
authored
Merge branch 'main' into fix/prevent-session-hang
2 parents 682c609 + 2b4c7eb commit fa8e9fc

File tree

3 files changed

+24
-22
lines changed

3 files changed

+24
-22
lines changed

.github/workflows/main-checks.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["main", "v1.x"]
6+
tags: ["v*.*.*"]
7+
pull_request:
8+
branches: ["main", "v1.x"]
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
checks:
15+
uses: ./.github/workflows/shared.yml
16+
17+
all-green:
18+
if: always()
19+
needs: [checks]
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
23+
with:
24+
jobs: ${{ toJSON(needs) }}

.github/workflows/pull-request-checks.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)