Skip to content

Commit

Permalink
chore: add merge queue for pr verify
Browse files Browse the repository at this point in the history
  • Loading branch information
inpt333 committed Jan 7, 2025
1 parent 221ca61 commit c6b98e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## 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?

## Impact

- [ ] App
- [ ] Supabase functions
- [ ] Supabase migration
- [ ] CI / GitHub
- [ ] `package.json`

## 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

0 comments on commit c6b98e4

Please sign in to comment.