update CI workflow to include paths for push and pull_request events; revise README for clarity and project overview
This commit is contained in:
@@ -3,8 +3,16 @@ name: CI
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master, dev]
|
branches: [master, dev]
|
||||||
|
paths:
|
||||||
|
- '**/*.json'
|
||||||
|
- '**/*.ts'
|
||||||
|
- '**/*.tsx'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master, dev]
|
branches: [master, dev]
|
||||||
|
paths:
|
||||||
|
- '**/*.json'
|
||||||
|
- '**/*.ts'
|
||||||
|
- '**/*.tsx'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -26,3 +34,4 @@ jobs:
|
|||||||
|
|
||||||
- name: Kiss Goodbye
|
- name: Kiss Goodbye
|
||||||
run: echo "Build and tests passed! Ready to deploy. 😘"
|
run: echo "Build and tests passed! Ready to deploy. 😘"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# SHSF Discord Bot
|
# 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
|
## Features
|
||||||
- **Command Handling:** Add commands in `src/commands/` and register them via `src/handlers/registerCommands.ts`.
|
- **Command Handling:** Add commands in `src/commands/` and register them via `src/handlers/registerCommands.ts`.
|
||||||
|
|||||||
Reference in New Issue
Block a user