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
Right now we use the repository URL from package.json to determine the git repository of the parent (dependency) package, and we link the dependents to use a branch from this repository
This is also used to check out a branch based on the branch name of the PR in the workflow.
Right now we use the repository URL from package.json to determine the git repository of the parent (dependency) package, and we link the dependents to use a branch from this repository
This is also used to check out a branch based on the branch name of the PR in the workflow.
This behavior is incorrect and fails.
When wiby is running in CI triggered from a PR which based off a fork, we need to:
main
, see bullet point in Name wiby test branches based on the dependency branch name #78) for constructing the testing branch name (e.g.wiby-my-feature
)pkgjs/wiby#pull/ID/head
)git fetch origin pull/ID/head:BRANCHNAME
approach to check out the branch inside the actionWhen wiby is running locally, we need to:
origin
The text was updated successfully, but these errors were encountered: