Skip to content

Commit c0884f8

Browse files
ovitrifclaude
andcommitted
chore: disable upstream CI workflows (manual-only)
All 10 upstream workflows have been changed to workflow_dispatch only, so they no longer fire on push/PR. They can still be triggered manually from the Actions tab. The Synonym-specific workflows are untouched. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f43439a commit c0884f8

File tree

10 files changed

+9
-43
lines changed

10 files changed

+9
-43
lines changed

.github/workflows/audit.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Security Audit
22
on:
33
workflow_dispatch:
4-
schedule:
5-
- cron: '0 0 * * *'
64

75
jobs:
86
audit:

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - Benchmarks
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
benchmark:

.github/workflows/cln-integration.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - CLN Integration Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
check-cln:

.github/workflows/kotlin.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - Kotlin Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
check-kotlin:

.github/workflows/lnd-integration.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - LND Integration Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
check-lnd:

.github/workflows/python.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - Python Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
check-python:

.github/workflows/rust.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - Rust Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
build:

.github/workflows/semver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: SemVer checks
2-
on: [push, pull_request]
2+
on: [workflow_dispatch]
33

44
jobs:
55
semver-checks:

.github/workflows/swift.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - Swift Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
check-swift:

.github/workflows/vss-integration.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: CI Checks - VSS Integration Tests
22

3-
on: [push, pull_request]
4-
5-
concurrency:
6-
group: ${{ github.workflow }}-${{ github.ref }}
7-
cancel-in-progress: true
3+
on: [workflow_dispatch]
84

95
jobs:
106
build-and-test:

0 commit comments

Comments
 (0)