Skip to content

Commit daddf77

Browse files
authored
fix(ci): skip auto-assign for Dependabot bot users (#15)
* test(tenant): update all existing tests for multi-tenancy support Add tenant_id to all factory creations across unit and feature tests. Replace local createAuth/setupProject helpers with global Pest helpers. Fix CL17 stranger to share tenant with owner. Update MigrationTest unique index assertions to reflect composite (tenant_id, code/identifier) indexes. Set TenantManager in test setups that mix factory creates with HTTP calls to prevent UNIQUE constraint violations on artifact sequence numbers. * feat(tenant): add multi-tenancy support - Add Tenant model, factory, and management commands (create, list, enable, disable, delete) - Add BelongsToTenant concern and TenantManager service - Add EnsureTenantActive middleware - Add tenant migrations (tenants table, tenant_id columns, unique constraints, superadmins) - Rename role to position in project_members table - Update existing models, controllers, and commands for tenant scoping - Update tests for multi-tenancy compatibility * fix(phpstan): remove unnecessary nullsafe on tenant->slug in UserListCommand * fix(ci): add write permissions to auto-assign workflow for Dependabot PRs * fix(ci): skip auto-assign for Dependabot PRs (bots cannot be assigned)
1 parent 5bcc097 commit daddf77

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/auto-assign.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ permissions:
1111
jobs:
1212
assign:
1313
runs-on: ubuntu-latest
14+
if: github.actor != 'dependabot[bot]'
1415
steps:
1516
- uses: actions/github-script@v7
1617
with:

0 commit comments

Comments
 (0)