瀏覽代碼

CI: Don't trigger push checks on a pull request

pull/3479/head
Ivan Pozdeev 1 月之前
父節點
當前提交
e55613a267
共有 3 個文件被更改,包括 12 次插入3 次删除
  1. +4
    -1
      .github/workflows/macos_build.yml
  2. +4
    -1
      .github/workflows/pyenv_tests.yml
  3. +4
    -1
      .github/workflows/ubuntu_build.yml

+ 4
- 1
.github/workflows/macos_build.yml 查看文件

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

+ 4
- 1
.github/workflows/pyenv_tests.yml 查看文件

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

+ 4
- 1
.github/workflows/ubuntu_build.yml 查看文件

@ -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…
取消
儲存