[ci] Disable combine on PR builds (#5691)

It takes 30 minutes, and the artifacts aren't used. The combine step
changes so infrequently that it's unlikely to break in PRs, so it's a
net benefit to speed up PR builds.
This commit is contained in:
Tyler Veness
2023-09-29 09:59:09 -07:00
committed by GitHub
parent 90288f06a6
commit 4be8384a76

View File

@@ -187,6 +187,9 @@ jobs:
name: Combine
needs: [build-docker, build-host, build-documentation]
runs-on: ubuntu-22.04
if: |
github.repository_owner == 'wpilibsuite' &&
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
steps:
- uses: actions/checkout@v3
with: