Skip to content

Commit a7e01a8

Browse files
committed
Reorganize workflows
1 parent 14fe466 commit a7e01a8

File tree

6 files changed

+368
-335
lines changed

6 files changed

+368
-335
lines changed

.github/workflows/ci-branchs.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI - Branches
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
- '!gh-pages'
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
checks:
13+
uses: ./.github/workflows/run-checks.yaml
14+
builds:
15+
needs: checks
16+
uses: ./.github/workflows/run-builds.yaml
17+
secrets: inherit
18+
release:
19+
needs: builds
20+
uses: ./.github/workflows/run-release.yaml
21+
secrets: inherit

.github/workflows/ci-prs.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI - Pull Requests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '*'
7+
- '!gh-pages'
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
checks:
15+
uses: ./.github/workflows/run-checks.yaml

.github/workflows/ci.yaml

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

0 commit comments

Comments
 (0)