diff options
author | Jens Vagelpohl <jens@plyp.com> | 2023-01-02 20:23:28 +0100 |
---|---|---|
committer | Jens Vagelpohl <jens@plyp.com> | 2023-01-02 20:23:28 +0100 |
commit | ce9d074382859322e4f153e4151cb7db5bd9490a (patch) | |
tree | 8e4e8174f96c44f66307ce0c895a2bcc45274d6f | |
parent | 761b186921b024b91273b15e0f6a3ac1f85656bf (diff) | |
download | zope-component-ce9d074382859322e4f153e4151cb7db5bd9490a.tar.gz |
- don't run GHA tests twice on every push to a PR branch
-rw-r--r-- | .github/workflows/tests.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fa64e1a..8f30882 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,6 +31,7 @@ jobs: - ["3.8", "coverage"] runs-on: ubuntu-20.04 + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name name: ${{ matrix.config[1] }} steps: - uses: actions/checkout@v3 |