-
-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into luan/compact-hooks
* upstream/main: (28 commits) ci: enable merge_group in key builds for merge-queue (#2063) ci: disable sonar in draft prs and main branch (#2062) fix: check player nullptr and connection timeout (#2060) feat: namelocks (#2005) improve: connection management (#2040) fix: adventurer stone (#2048) fix: max limit of character name (#2035) fix: add missing 'alchemist container' monster (#2036) fix: players healing when attacked (#2026) fix: speed change issues (#2032) feat: the monster fight mechanics (#2001) fix: oberon arguments (#2021) fix: paladin speed on sharpshooter and swift foot (#2030) fix: skill food from hireling (#2028) improve: more reliable quickloot/autoloot (#1997) feat: configurable number of players per account (#2000) fix: potions conditions for group ids above senior tutors (#2019) fix: missing spell effect and file (#2020) fix: do not award bosstiary/bestiary points for summons (#2017) fix: correct spread value assignment from 1 to 0 (#2018) ...
- Loading branch information
Showing
469 changed files
with
4,001 additions
and
2,465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,11 @@ on: | |
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
merge_group: | ||
push: | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
branches: | ||
- main | ||
|
||
|
@@ -18,10 +19,10 @@ jobs: | |
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
build_docker_x86: | ||
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | ||
|
@@ -35,7 +36,7 @@ jobs: | |
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: '5.x' | ||
versionSpec: "5.x" | ||
|
||
- name: Determine Version | ||
id: gitversion | ||
|
@@ -93,7 +94,7 @@ jobs: | |
if: github.ref != 'refs/heads/main' | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: 'same_content' | ||
concurrent_skipping: "same_content" | ||
cancel_others: true | ||
|
||
- name: Checkout | ||
|
@@ -104,7 +105,7 @@ jobs: | |
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: '5.x' | ||
versionSpec: "5.x" | ||
|
||
- name: Determine Version | ||
id: gitversion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,26 +6,27 @@ on: | |
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
merge_group: | ||
push: | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
branches: | ||
- main | ||
|
||
env: | ||
CMAKE_BUILD_PARALLEL_LEVEL: 2 | ||
MAKEFLAGS: '-j 2' | ||
MAKEFLAGS: "-j 2" | ||
|
||
jobs: | ||
cancel-runs: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
job: | ||
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,24 +5,25 @@ on: | |
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
merge_group: | ||
push: | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
branches: | ||
- main | ||
env: | ||
CMAKE_BUILD_PARALLEL_LEVEL: 2 | ||
MAKEFLAGS: '-j 2' | ||
MAKEFLAGS: "-j 2" | ||
jobs: | ||
cancel-runs: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
job: | ||
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,26 +6,27 @@ on: | |
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
merge_group: | ||
push: | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
branches: | ||
- main | ||
|
||
env: | ||
CMAKE_BUILD_PARALLEL_LEVEL: 2 | ||
MAKEFLAGS: '-j 2' | ||
MAKEFLAGS: "-j 2" | ||
|
||
jobs: | ||
cancel-runs: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
job: | ||
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,20 @@ name: Clang-format | |
on: | ||
pull_request: | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
merge_group: | ||
push: | ||
paths: | ||
- 'src/**' | ||
- "src/**" | ||
jobs: | ||
cancel-runs: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
--- | ||
name: 'Cron - Stale issues and PRs' | ||
name: "Cron - Stale issues and PRs" | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
cancel-runs: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v6 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'This issue is stale because it has been open 120 days with no activity.' | ||
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity.' | ||
stale-issue-message: "This issue is stale because it has been open 120 days with no activity." | ||
stale-pr-message: "This PR is stale because it has been open 45 days with no activity." | ||
days-before-issue-stale: 90 | ||
days-before-pr-stale: 30 | ||
days-before-issue-close: -1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name: Tests - Lua | |
|
||
on: | ||
pull_request: | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
|
Oops, something went wrong.