Skip to content

Commit 4a50ebc

Browse files
committed
g
1 parent 953c577 commit 4a50ebc

19 files changed

Lines changed: 2321 additions & 5 deletions

.github/workflows/next-check.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Branch next: Check"
2+
3+
on:
4+
pull_request:
5+
branches: [next]
6+
push:
7+
branches: [next]
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
check:
15+
name: Check
16+
runs-on: ubuntu-slim
17+
steps:
18+
- name: Do nothing
19+
shell: bash
20+
run: exit 0
21+
# - uses: actions/checkout@v6
22+
# name: Checkout
23+
# with:
24+
# submodules: false
25+
# - name: Checkout optional submodules
26+
# shell: bash
27+
# run: git submodule update --init --checkout

0 commit comments

Comments
 (0)