Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @fwal
30 changes: 30 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
🎉 feature:
- head-branch:
- '^feature'
- 'feature'
- '^feat'
- 'feat'
🐛 fix:
- head-branch:
- '^fix'
- 'fix'
📦 admin:
- changed-files:
- any-glob-to-any-file: 'packages/admin/**'
📦 client:
- changed-files:
- any-glob-to-any-file: 'packages/client/**'
📦 core:
- changed-files:
- any-glob-to-any-file: 'packages/effect-firebase/**'
📦 mock:
- changed-files:
- any-glob-to-any-file: 'packages/mock/**'
📖 docs:
- changed-files:
- any-glob-to-any-file:
- 'example/**'
- '**/*.md'
🛠️ config:
- changed-files:
- any-glob-to-any-file: '.github/**'
19 changes: 19 additions & 0 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Triage

on:
pull_request_target:
types: [opened, synchronize]
Comment thread
coderabbitai[bot] marked this conversation as resolved.

jobs:
check-labels:
name: Labels
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ github.actor != 'dependabot[bot]' }}
permissions:
contents: read
issues: write
pull-requests: write
steps:
- name: Set labels
uses: actions/labeler@v6
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Loading