From 73c1dde9196ca9837f55ff9eadb427f80f1995ee Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Sun, 22 Feb 2026 15:16:11 +0100 Subject: [PATCH] update CI workflow to include paths for push and pull_request events; revise README for clarity and project overview --- .gitea/workflows/ci.yml | 9 +++++++++ README.md | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 06f13b3..2ed6b58 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,8 +3,16 @@ name: CI on: push: branches: [master, dev] + paths: + - '**/*.json' + - '**/*.ts' + - '**/*.tsx' pull_request: branches: [master, dev] + paths: + - '**/*.json' + - '**/*.ts' + - '**/*.tsx' jobs: build: @@ -26,3 +34,4 @@ jobs: - name: Kiss Goodbye run: echo "Build and tests passed! Ready to deploy. 😘" + diff --git a/README.md b/README.md index 0a15991..320b896 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # SHSF Discord Bot -A modular TypeScript Discord bot for SHSF, designed for clarity, extensibility, and easy maintenance. - +Official Discord bot for the SHSF community, built with modularity and extensibility in mind. This bot provides a framework for handling commands, events, startup routines, and web endpoints, allowing for easy addition of new features. + ## Features - **Command Handling:** Add commands in `src/commands/` and register them via `src/handlers/registerCommands.ts`. - **Event Listeners:** Handle Discord events in `src/listeners/`, grouped by event type.