mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 07:36:16 -04:00
CI: Don't trigger push checks on a pull request
This commit is contained in:
parent
6c0c5cfa96
commit
e55613a267
5
.github/workflows/macos_build.yml
vendored
5
.github/workflows/macos_build.yml
vendored
|
|
@ -1,5 +1,8 @@
|
|||
name: macos_build
|
||||
on: [pull_request, push]
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request: {}
|
||||
|
||||
permissions:
|
||||
contents: read # to fetch code (actions/checkout)
|
||||
|
|
|
|||
5
.github/workflows/pyenv_tests.yml
vendored
5
.github/workflows/pyenv_tests.yml
vendored
|
|
@ -1,5 +1,8 @@
|
|||
name: pyenv_tests
|
||||
on: [pull_request, push]
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request: {}
|
||||
|
||||
permissions:
|
||||
contents: read # to fetch code (actions/checkout)
|
||||
|
|
|
|||
5
.github/workflows/ubuntu_build.yml
vendored
5
.github/workflows/ubuntu_build.yml
vendored
|
|
@ -1,5 +1,8 @@
|
|||
name: ubuntu_build
|
||||
on: [pull_request, push]
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request: {}
|
||||
|
||||
permissions:
|
||||
contents: read # to fetch code (actions/checkout)
|
||||
|
|
|
|||
Loading…
Reference in a new issue