Compare commits

...

26 Commits

Author SHA1 Message Date
afd87dd536 Merge pull request #176 from StarCitizenToolBox/temp_cn_e_4.0.1_PTU_9482684_20250113200327
4.0.1 PTU 9482684 cn_e
2025-01-14 09:14:40 +08:00
523edf698c 4.0.1 PTU 9482684 2025-01-13 12:04:14 +00:00
f146851271 Merge pull request #170 from StarCitizenToolBox/temp_cn_e_4.0.1_PTU_9482684_20250112041335
4.0.1 PTU 9482684 cn_e
2025-01-12 11:16:39 +08:00
9d5f77d2a9 4.0.1 PTU 9482684 2025-01-11 20:14:17 +00:00
d5c8457265 Merge pull request #157 from StarCitizenToolBox/cn_e-4.0.0-LIVE-9470730-20241230140242
4.0 LIVE 9470730 cn_e
2024-12-30 14:13:07 +08:00
8f21a0cdc3 4.0 LIVE 9470730 2024-12-30 14:03:36 +08:00
a0e38d820b Merge pull request #153 from TheWanderingCitizen/cn_e
4.0 EPTU 9462348 cn_e
2024-12-27 09:59:11 +08:00
6040851688 4.0 LIVE 9470730 2024-12-26 16:00:55 +00:00
6200488624 4.0 EPTU 9462348 2024-12-26 14:43:53 +00:00
f0ac623df2 Merge pull request #150 from TheWanderingCitizen/cn_e
4.0 EPTU 9462348 cn_e
2024-12-22 12:39:20 +08:00
98cdc31130 4.0 EPTU 9462348 2024-12-21 23:55:07 +00:00
9c27e469bb Merge pull request #148 from TheWanderingCitizen/cn_e
4.0 EPTU 9462348 cn_e
2024-12-21 13:41:20 +08:00
20da399052 4.0 EPTU 9462348 2024-12-21 05:39:04 +00:00
2a68288347 4.0 EPTU 9462348 2024-12-20 14:52:15 +00:00
1683d22fb9 Merge pull request #138 from TheWanderingCitizen/cn_e
4.0 EPTU 9462348 cn_e
2024-12-20 13:10:14 +08:00
b486986f76 4.0 EPTU 9462348 2024-12-20 05:07:52 +00:00
33a7fa66c6 4.0 EPTU 9462348 (#130)
Co-authored-by: runner <runner@fv-az1982-726.fzrifqltqgiuthmky10grxqjrc.cx.internal.cloudapp.net>
2024-12-17 21:58:57 +08:00
5b123ffe64 Merge pull request #125 from TheWanderingCitizen/cn_e
4.0 EPTU 9461556 cn_e
2024-12-16 20:21:55 +08:00
11d166aceb 4.0 EPTU 9461556 2024-12-16 12:16:34 +00:00
bb9e999645 Merge pull request #120 from TheWanderingCitizen/cn_e
4.0 EPTU 9458608 cn_e
2024-12-12 16:40:40 +08:00
e9422f062a 4.0 EPTU 9458608 2024-12-12 08:16:30 +00:00
122a16111b bump: runner_tools v1.0.1 2024-12-04 15:04:33 +08:00
ddc9b606db fix 2024-12-04 14:34:57 +08:00
58a9f65722 3.24.3 LIVE 9423704 cn_e (#108)
* frat: runner tools

* 3.24.3 LIVE 9423704

---------

Co-authored-by: xkeyC <39891083+xkeyC@users.noreply.github.com>
Co-authored-by: runner <runner@fv-az1198-211.olij14r4f4eezasrnq2weippdh.phxx.internal.cloudapp.net>
2024-12-04 14:33:23 +08:00
b434b5ad1e fix 2024-12-04 11:52:28 +08:00
5d73ae1734 frat: runner tools 2024-11-28 18:17:43 +08:00
2 changed files with 3630 additions and 1924 deletions

37
.github/workflows/pr_check.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: PR Check
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- '**'
workflow_dispatch:
jobs:
rust-pr-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true
prefix-key: "rs_cache"
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
shared-key: "share"
- name: Setup localization runner tools
run: cargo install --git https://github.com/StarCitizenToolBox/runner_tools.git --tag v1.0.1 localization
- name: PR Check
env:
GH_REPO: ${{ github.repository }}
GH_PR_NUMBER: ${{ github.event.pull_request.id }}
GH_PR_TITLE: ${{ github.event.pull_request.title }}
run: localization -m pr_check

File diff suppressed because it is too large Load Diff