modify upstream workflows to trigger on workflow dispatch instead of all PRs

This commit is contained in:
Tess Gauthier 2023-02-03 12:44:07 -05:00
parent d662cc9f7e
commit 718aab1c77
3 changed files with 4 additions and 11 deletions

View File

@ -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'

View File

@ -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:

View File

@ -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: