mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-06 02:30:26 -08:00
fix(CI): do not run on draft PRs (#21009)
This commit is contained in:
parent
f011cbb602
commit
ebf7f7583b
5 changed files with 5 additions and 5 deletions
2
.github/workflows/codestyle.yml
vendored
2
.github/workflows/codestyle.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
triage:
|
triage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: C++
|
name: C++
|
||||||
if: github.repository == 'azerothcore/azerothcore-wotlk'
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
|
|
|
||||||
2
.github/workflows/core-build-nopch.yml
vendored
2
.github/workflows/core-build-nopch.yml
vendored
|
|
@ -33,7 +33,7 @@ jobs:
|
||||||
CXX: g++-14
|
CXX: g++-14
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-nopch
|
name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-nopch
|
||||||
if: github.repository == 'azerothcore/azerothcore-wotlk'
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/linux-build
|
- uses: ./.github/actions/linux-build
|
||||||
|
|
|
||||||
2
.github/workflows/core_modules_build.yml
vendored
2
.github/workflows/core_modules_build.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
CXX: clang++-18
|
CXX: clang++-18
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-nopch-modules
|
name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-nopch-modules
|
||||||
if: github.repository == 'azerothcore/azerothcore-wotlk'
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
# This script installs a general list of modules to compile with
|
# This script installs a general list of modules to compile with
|
||||||
|
|
|
||||||
2
.github/workflows/pr_labeler.yml
vendored
2
.github/workflows/pr_labeler.yml
vendored
|
|
@ -6,7 +6,7 @@ jobs:
|
||||||
triage:
|
triage:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
if: github.repository == 'azerothcore/azerothcore-wotlk'
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
2
.github/workflows/sql-codestyle.yml
vendored
2
.github/workflows/sql-codestyle.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
triage:
|
triage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: SQL
|
name: SQL
|
||||||
if: github.repository == 'azerothcore/azerothcore-wotlk'
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Check pending SQL
|
- name: Check pending SQL
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue