Skip to content

Commit ab3c19c

Browse files
committed
feat: create new ci files
1 parent 8dc9dd5 commit ab3c19c

4 files changed

Lines changed: 40 additions & 0 deletions

File tree

.github/labeler.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
backend:
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- "src/app/**/*.php"
5+
- "src/app/Packages/**/*.php"
6+
- "src/routes/**/*.php"
7+
- "src/config/**/*.php"
8+
9+
feature:
10+
- head-branch: ['^feat', 'feature']
11+
12+
bug:
13+
- head-branch: ['^fix', 'bugfix', 'hotfix']
14+
15+
refactor:
16+
- head-branch: ['^refactor']
17+
18+
perf:
19+
- head-branch: ['^perf']
20+
21+
release:
22+
- base-branch: ['^release', '^main$']

.github/workflows/phpstan_test.yml

Whitespace-only changes.

.github/workflows/pr-label.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: PR Labeler
2+
on:
3+
pull_request:
4+
types: [opened, ready_for_review, synchronize]
5+
6+
jobs:
7+
labeler:
8+
timeout-minutes: 1
9+
permissions:
10+
contents: read
11+
pull-requests: write
12+
issues: write
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/labeler@v5
16+
with:
17+
configuration-path: .github/labeler.yml
18+
sync-labels: false

.github/workflows/server_test.yml

Whitespace-only changes.

0 commit comments

Comments
 (0)