Compare commits

..

8 Commits

Author SHA1 Message Date
f448c85314 Merge pull request #227 from Orbit-Startech/tw
TCTP - 更新 global.ini 至 4.0.1(LIVE)
2025-02-04 16:36:53 +08:00
306d39ac18 Update global.ini
Signed-off-by: everland.3769 <ng930119@gmail.com>
2025-02-04 11:13:22 +08:00
781c4a29f0 Merge pull request #142 from Orbit-Startech/tw
TCTP - 更新 global.ini 至 4.0.0(PREVIEW)
2024-12-20 14:01:36 +08:00
841283a5b4 更新 global.ini 至 4.0.0(PREVIEW)
Signed-off-by: everland.3769 <ng930119@gmail.com>
2024-12-20 13:27:01 +08:00
2e7de3bf18 Merge pull request #124 from Orbit-Startech/tw
TCTP - 更新 global.ini 至 4.0.0(EPTU)
2024-12-16 12:03:13 +08:00
22b925906e 更新 global.ini 至 4.0.0(EPTU)
Signed-off-by: everland.3769 <ng930119@gmail.com>
2024-12-16 11:53:02 +08:00
4aaebb325a bump: runner_tools v1.0.1 2024-12-04 15:07:21 +08:00
9bc7af6085 feat: runner 2024-11-28 18:19:59 +08:00
2 changed files with 5858 additions and 3156 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 one or more lines are too long