generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(check-merge-safety): add check-merge-safety helper (#295)
* feat(check-merge-safety): add check-merge-safety helper * add core info log * more logs * update use cases * fix logic * clean up * support push workflow * add test * clean up * make paths optional * better docs * clarify logs * clarify logs and test names * update workflow * add comment * test with debug logging * undo * logs * test * try colon * use owner * use owner * fix tests * test * fix * fix tests * switch to use message * fix messages * add test case * chore: committing generated dist * typo * fix * filter out draft prs and prs with other base branch Co-authored-by: danadajian <[email protected]>
- Loading branch information
1 parent
91aedc2
commit b4afb07
Showing
13 changed files
with
751 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Check Merge Safety | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request_target: | ||
branches: [ main ] | ||
|
||
jobs: | ||
test: | ||
name: Merge Safety | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: ./ | ||
with: | ||
helper: check-merge-safety | ||
override_filter_paths: | | ||
package.json | ||
package-lock.json | ||
github_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.