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
19 changes: 19 additions & 0 deletions .github/workflows/block-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Block WIP/Draft Merges

on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
- ready_for_review
- labeled
- unlabeled

jobs:
block-merge:
uses: supabase/actions/.github/workflows/block-merge.yml@659b3cd74a64ee2f1ca0a527922f134707e54671
with:
block_labels: "do-not-merge,blocked"
block_keywords: "wip,do not merge"
31 changes: 31 additions & 0 deletions .github/workflows/label-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Auto-Label Issues and PRs

on:
pull_request:
types:
- opened
- edited
issues:
types:
- opened
- edited

jobs:
label:
uses: supabase/actions/.github/workflows/label-issues.yml@659b3cd74a64ee2f1ca0a527922f134707e54671
with:
label_mappings: |
{
"gotrue": "auth",
"auth": "auth",
"storage": "storage",
"storage_client": "storage",
"realtime": "realtime",
"realtime_client": "realtime",
"postgrest": "postgrest",
"functions": "functions",
"functions_client": "functions",
"auth_ui": "auth-ui",
"supabase": "supabase",
"supabase_flutter": "supabase_flutter"
}
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Manage Stale Issues and PRs

on:
schedule:
# Run every Sunday at 00:00 UTC
- cron: "0 0 * * 0"
workflow_dispatch:

jobs:
stale:
uses: supabase/actions/.github/workflows/stale.yml@659b3cd74a64ee2f1ca0a527922f134707e54671
with:
days_before_issue_stale: 180
days_before_issue_close: 30
days_before_pr_stale: 90
days_before_pr_close: 14
exempt_issue_labels: "priority,security,planned,good first issue"
exempt_pr_labels: "priority,security"
operations_per_run: 100