Skip to content

Commit f6a07e2

Browse files
committed
ci(workflow): Update trigger paths to reflect project refactoring
The project's file structure has been reorganized. This commit updates the `paths` filter in the main GitHub Actions workflow to align with the new layout. The old paths (`main.py`, `utils.py`, `core/`) have been replaced with the new source directories (`bot.py`, `config.py`, `aient/`, `md2tgmd/`, `utils/`). Additionally, `.gitignore` has been added to the trigger paths. This change ensures the CI pipeline runs only when relevant project files are modified.
1 parent 4f9c046 commit f6a07e2

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ on:
66
branches:
77
- main
88
paths:
9-
- main.py
10-
- utils.py
11-
- core/**
12-
- core
9+
- bot.py
10+
- config.py
11+
- aient/**
12+
- md2tgmd/**
13+
- utils/**
1314
- Dockerfile
1415
- .dockerignore
16+
- .gitignore
1517
- pyproject.toml
1618
- docker-compose.yml
1719
- .github/workflows/main.yml

0 commit comments

Comments
 (0)