Skip to content

Commit

Permalink
Merge pull request #1478 from guardrail-dev/fix-bincompat-check
Browse files Browse the repository at this point in the history
isRelease should be considered for bincompat
  • Loading branch information
blast-hardcheese authored May 11, 2022
2 parents 8d68d4e + 6884a45 commit 0c21e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/main/scala/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object Build {
val isMasterBranch = sys.env.get("GITHUB_REF").contains("refs/heads/master")
val isRelease = sys.env.contains("GUARDRAIL_RELEASE_MODULE")
val isCi = sys.env.contains("GUARDRAIL_CI")
if (isCi) {
if (isCi || isRelease) {
val ignoreBincompat = {
import scala.sys.process._
"support/current-pr-labels.sh"
Expand Down

0 comments on commit 0c21e56

Please sign in to comment.