Skip to content

Commit d02e971

Browse files
committed
ci: add build fallback workflow for skipped required status checks
1 parent 3b92cec commit d02e971

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Build Fallback
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'v3'
7+
- 'v3*'
8+
paths-ignore:
9+
- 'apps/analytics/**'
10+
- 'apps/auth/**'
11+
- 'apps/backend-docker/**'
12+
- 'apps/chat/**'
13+
- 'apps/frontend-control/**'
14+
- 'apps/frontend-manage/**'
15+
- 'apps/frontend-pwa/**'
16+
- 'apps/hatchet-worker-general/**'
17+
- 'apps/hatchet-worker-response-processor/**'
18+
- 'apps/lti/**'
19+
- 'apps/olat-api/**'
20+
- 'apps/response-api/**'
21+
- '.github/workflows/v3_**'
22+
23+
concurrency:
24+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}
25+
cancel-in-progress: true
26+
27+
jobs:
28+
build-amd:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Success
32+
run: echo "Fallback build check"
33+
34+
build-arm:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: Success
38+
run: echo "Fallback build check"

0 commit comments

Comments
 (0)