Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add merge queue for pr verify #150

Merged
merged 1 commit into from
Jan 7, 2025
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
24 changes: 24 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Summary

- What does this merge request implement?
- What are the most important pieces of code to review?
- Other bugs or minor issues you have fixed?
- Fixes # [...]

## Impact

- [ ] App
- [ ] Supabase functions
- [ ] Supabase migration
- [ ] CI / GitHub
- [ ] `pubspec.yaml`

## Testing steps

What steps should the reviewer follow to test this change?

## Open points

What do you intend to address later?
What else is still unclear at the time of writing,
and needs further discussion before implementing?
7 changes: 7 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ name: Verify

on:
pull_request:
merge_group:

# We only care about the latest version: stop old jobs if a new commit is pushed.
# The fallback on github.ref is for when the workflow is for a merge queue.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
flutter:
Expand Down
Loading