diff options
-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 }}) |