You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By defaulting it to fallback-to-default-branch: false, consumers on the new version of the action will get the same behavior as what is currently in the v1 branch (no automatic default-branch fallback) until they explicitly opt in by setting fallback-to-default-branch: true. This gives them time to evaluate whether they want the new behavior before enabling it.
Changes the default value of the fallback-to-default-branch input in action.yml from true to false. This is a straightforward configuration change that aligns the action's default behavior with v1 while users decide whether to adopt the new fallback behavior.
What reviewers should know
The change is confined to a single line in action.yml (line 37). This is a behavioral default change—users who haven't explicitly set fallback-to-default-branch will now get the v1 behavior (no automatic fallback) instead of the new behavior. No logic or documentation changes are included in this commit; the impact is purely on the default input value. Reviewers should confirm this is the intended change and that no other inputs or logic need to be updated alongside it.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context of PR
By defaulting it to
fallback-to-default-branch: false, consumers on the new version of the action will get the same behavior as what is currently in thev1branch (no automatic default-branch fallback) until they explicitly opt in by settingfallback-to-default-branch: true. This gives them time to evaluate whether they want the new behavior before enabling it.This is all part of the Release Plan outlined in Slack here
What Changed?
fallback-to-default-branchfromtrue->false