Skip to content

Commit 718aab1

Browse files
committed
modify upstream workflows to trigger on workflow dispatch instead of all PRs
1 parent d662cc9 commit 718aab1

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/c-cpp.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
name: C/C++ CI
22

33
on:
4-
push:
5-
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
6-
pull_request:
7-
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
8-
4+
workflow_dispatch:
5+
96
jobs:
107
ci:
118
if: github.repository != 'openssh/openssh-portable-selfhosted'

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: CIFuzz
22
on:
3-
push:
4-
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
5-
pull_request:
6-
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
3+
workflow_dispatch:
74

85
jobs:
96
Fuzzing:

.github/workflows/selfhosted.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: C/C++ CI self-hosted
22

33
on:
4-
push:
5-
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
4+
workflow_dispatch:
65

76
jobs:
87
selfhosted:

0 commit comments

Comments
 (0)