diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2024-01-08 20:10:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 20:10:25 +0100 |
commit | fdbde0b866300f5647a0df0211b7cfda2e6d66b5 (patch) | |
tree | 2b0e059f4a45cf103d13d3395029d9b76c3e6f8e /.github | |
parent | f2cf359045e89860de7fd7866dfd3d2356a48c9c (diff) |
fix(CI): Probably fix vanishing CIs from PRs (#18124)
* Update core-build-nopch.yml
* Update core-build-pch.yml
* Update core-build-nopch.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/core-build-nopch.yml | 4 | ||||
-rw-r--r-- | .github/workflows/core-build-pch.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/core-build-nopch.yml b/.github/workflows/core-build-nopch.yml index 2c29bd3911..1e31fabdf8 100644 --- a/.github/workflows/core-build-nopch.yml +++ b/.github/workflows/core-build-nopch.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'opened', 'synchronize', 'reopened'] + types: ['opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) @@ -25,7 +25,7 @@ jobs: name: ${{ matrix.os }}-${{ matrix.compiler }}-nopch env: COMPILER: ${{ matrix.compiler }} - if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft + if: github.repository == 'azerothcore/azerothcore-wotlk' steps: - uses: actions/checkout@v4 - name: Cache diff --git a/.github/workflows/core-build-pch.yml b/.github/workflows/core-build-pch.yml index 7420d2b17a..7535ab5d59 100644 --- a/.github/workflows/core-build-pch.yml +++ b/.github/workflows/core-build-pch.yml @@ -4,7 +4,7 @@ on: branches: - 'master' pull_request: - types: ['labeled', 'opened', 'synchronize', 'reopened'] + types: ['opened', 'synchronize', 'reopened'] concurrency: group: ${{ github.head_ref }} || concat(${{ github.ref }}, ${{ github.workflow }}) |