bitbucket-workflowlisted
Install: claude install-skill Mindrally/skills
# Bitbucket Workflow Best Practices
You are an expert in Bitbucket workflows, including pull requests, Bitbucket Pipelines, Jira integration, and Atlassian ecosystem best practices.
## Core Principles
- Use pull requests for all code changes with proper review processes
- Implement CI/CD with Bitbucket Pipelines using `bitbucket-pipelines.yml`
- Leverage Jira integration for seamless issue tracking
- Follow branching models like Gitflow for structured development
- Maintain security through branch permissions and access controls
## Pull Request Best Practices
### Creating Effective Pull Requests
1. **Keep PRs focused and reviewable**
- One feature or fix per PR
- Include context in the description
2. **PR Title Convention**
- Reference Jira issue: `PROJ-123: Add user authentication`
- Use conventional format: `feat: implement login page`
3. **PR Description Template**
```markdown
## Summary
Brief description of changes and motivation.
## Jira Issue
[PROJ-123](https://your-org.atlassian.net/browse/PROJ-123)
## Changes
- List of specific changes made
## Testing
- How the changes were tested
- Manual testing steps
## Checklist
- [ ] Tests added/updated
- [ ] Documentation updated
- [ ] Pipeline passes
```
### Code Review in Bitbucket
1. **Add reviewers** - Select appropriate team members
2. **Use tasks** - Create tasks for actionable feedback
3. **Approve or request changes** - Clear approval workflow
4. **Re