modify upstream workflows to trigger on workflow dispatch instead of all PRs
This commit is contained in:
parent
d662cc9f7e
commit
718aab1c77
|
@ -1,11 +1,8 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on:
|
||||
push:
|
||||
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
|
||||
pull_request:
|
||||
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
if: github.repository != 'openssh/openssh-portable-selfhosted'
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
name: CIFuzz
|
||||
on:
|
||||
push:
|
||||
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
|
||||
pull_request:
|
||||
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
Fuzzing:
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
name: C/C++ CI self-hosted
|
||||
|
||||
on:
|
||||
push:
|
||||
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
selfhosted:
|
||||
|
|
Loading…
Reference in New Issue