From 4320638e657c7641b8ea09a63d4586a823c10df0 Mon Sep 17 00:00:00 2001 From: h0lybyte <5599058+h0lybyte@users.noreply.github.com> Date: Tue, 10 Jun 2025 17:23:51 -0400 Subject: [PATCH 1/2] ci(repo): preparing the configuration file for the repo. --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..00f27ea --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Main KBVE Issue Tracker + url: https://github.com/KBVE/kbve/issues/new/choose + about: Please report all issues and feature requests in the main KBVE repository. From 061772bcf0558ca59096d86e197a75a98b5e322a Mon Sep 17 00:00:00 2001 From: h0lybyte <5599058+h0lybyte@users.noreply.github.com> Date: Tue, 10 Jun 2025 17:29:59 -0400 Subject: [PATCH 2/2] ci(pipeline): updating the github actions to be a bit more accurate for the build check that we want to do. --- .github/workflows/rust.yml | 48 +------------------------------------- 1 file changed, 1 insertion(+), 47 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b73e56a..60b98a8 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -7,20 +7,6 @@ env: RUSTDOCFLAGS: -D warnings jobs: - check: - name: Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - uses: actions-rs/cargo@v1 - with: - command: check - args: --all-features check_wasm: name: Check wasm32 @@ -54,38 +40,6 @@ jobs: command: test args: --lib - fmt: - name: Rustfmt - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - components: rustfmt - - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --all -- --check - - clippy: - name: Clippy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - components: clippy - - uses: actions-rs/cargo@v1 - with: - command: clippy - args: -- -D warnings - trunk: name: trunk runs-on: ubuntu-latest @@ -94,7 +48,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.81.0 + toolchain: 1.86.0 target: wasm32-unknown-unknown override: true - name: Download and install Trunk binary