Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Dependabot auto-merge workflow (#27)
* feat: add Dependabot auto-merge workflow - Add GitHub workflow to automatically merge Dependabot PRs when checks pass - Add documentation about automated dependency updates to README - Configure workflow with necessary permissions for auto-merging - Use GitHub CLI to enable auto-merge functionality - Auto merges only on patch, or minor, not major bumps This change streamlines dependency management by automatically merging security and dependency updates from Dependabot when all CI checks pass. * feat(ci): make dependabot auto-merge wait for test workflow Updates the dependabot auto-merge workflow to explicitly wait for the test workflow to complete successfully before attempting to merge. This provides an additional safety check beyond branch protection rules and ensures dependencies are only merged after passing all tests. - Changes trigger from pull_request to workflow_run - Adds explicit check for workflow_run.conclusion == 'success' - References "Test Code" workflow as a prerequisite
- Loading branch information