-
Notifications
You must be signed in to change notification settings - Fork 536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automation: main-next integrate #18729
Merged
Merged
Conversation
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
…ha (#18652) This PR tags the SharedString, SharedMatrix, SharedMap, and SharedDirectory as alpha. All these types were automatically identified as transitive dependency of the SharedString, SharedMatrix, SharedMap, and SharedDirectory. We will stage these commits and invite review, however review items will generally be added to the backlog as future items, as these type updates are necessary for the current state of the code base. Co-authored-by: Tony Murphy <[email protected]>
This PR tags aqueduct as alpha. All these types were automatically identified as transitive dependency of the aqueduct. We will stage these commits and invite review, however review items will generally be added to the backlog as future items, as these type updates are necessary for the current state of the code base. Co-authored-by: Tony Murphy <[email protected]>
This PR tags the odsp-driver as alpha. All these types were automatically identified as transitive dependency of the odsp-driver. We will stage these commits and invite review, however review items will generally be added to the backlog as future items, as these type updates are necessary for the current state of the code base. Co-authored-by: Tony Murphy <[email protected]>
This PR tags AzureClient and OdspClient as alpha. All these types were automatically identified as transitive dependency of AzureClient and OdspClient We will stage these commits and invite review, however review items will generally be added to the backlog as future items, as these type updates are necessary for the current state of the code base. Note: AzureClient and OdspClient will eventually move to public and beta respectively, but we are starting with alpha, and will bring them and their dependencies forward in a later PR --------- Co-authored-by: Tony Murphy <[email protected]>
github-actions
bot
added
community-contribution
base: next
PRs targeted against next branch
labels
Dec 8, 2023
sonalideshpandemsft
force-pushed
the
main-next-b83d208
branch
from
December 9, 2023 00:50
e443f6a
to
1a1f69f
Compare
⯅ @fluid-example/bundle-size-tests: +14 Bytes
Baseline commit: c6cda2f |
This PR is ready to merge! Please review it and squash merge into |
sonalideshpandemsft
approved these changes
Dec 11, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
main-next integrate PR
DO NOT MERGE THIS PR USING THE GITHUB UI.
The aim of this pull request is to sync main and next branch. This branch has MERGE CONFLICTS with next due to this commit. If this PR is assigned to you, you need to do the following:
git fetch --all
-- this ensures your remote refs are updatedgit remote -v
-- displays the list of remote repositories associated with your Git repository along with their corresponding URLs. You have to choose the remote associated with the microsoft/FluidFramework repository. Change the remote name in these example commands if yours is not upstream.git checkout -b next-merge-head upstream/next
-- make a temporary branch at next.git merge upstream/main-next-b83d208
-- merge next into main-next-b83d208git add .
-- stage all the local changesgit commit -m "Automation: main-next integrate"
-- commit the mergegit checkout main-next-b83d208
-- check out the mergeBranch locallygit merge next-merge-head --ff-only
-- fast-forward to the merge commitgit push upstream
-- and push it to upstream (your upstream remote name may be different)git commit --amend -m "Automation: main-next integrate"
git push --force-with-lease
Once CI passes and the PR is ready to merge, add the "msftbot: merge-next" label to the PR and one of the people with merge permissions will merge it in.