Skip to content

Commit

Permalink
Fix(Workflow): Fix github action when PR is sending (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
iThorgrim authored Jan 22, 2025
1 parent 4e068e4 commit 5d912ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-lua52.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- 'master'
- 'action'
- 'main'
pull_request:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-luajit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- 'master'
- 'action'
- 'main'
pull_request:

jobs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/core-build-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ jobs:
repository: 'azerothcore/azerothcore-wotlk'
ref: 'master'
submodules: 'recursive'
fetch-depth: 0

- name: Check out module repository 📂
uses: actions/checkout@v4
with:
submodules: 'recursive'
path: 'modules/${{ github.event.repository.name }}'
ref: ${{ github.ref_name }}
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: Cache compilation artifacts 💾
uses: actions/cache@v4
Expand Down

0 comments on commit 5d912ee

Please sign in to comment.