-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github.event.pull_request.base.sha is not defined when pushing a branch, which means that job will always be failing for pushes.
- Loading branch information
Showing
2 changed files
with
19 additions
and
13 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,19 @@ | ||
|
||
name: "Backward Compatibility Check" | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
roave_bc_check: | ||
name: "Roave BC Check" | ||
runs-on: "ubuntu-20.04" | ||
steps: | ||
- uses: "actions/checkout@v2" | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: "Roave BC Check" | ||
uses: "docker://nyholm/roave-bc-check-ga" | ||
with: | ||
args: "--from=${{ github.event.pull_request.base.sha }}" |
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