浏览代码

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)

正在加载...
取消
保存