forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/microsoft/FluidFramework
- Loading branch information
Showing
1,178 changed files
with
28,167 additions
and
21,069 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
--- | ||
"@fluidframework/tree": minor | ||
--- | ||
--- | ||
"section": "tree" | ||
--- | ||
Refactor code for emitting events to make it easier to copy paste into other projects. | ||
|
||
Factored event emitting utilities into their own file, `events/emitter.ts`. | ||
Applications wishing to use SharedTree's eventing library for custom events can copy this file (and its referenced utility function) as a starting point for defining and emitting their own custom events. | ||
See `createEmitter`'s documentation for example usage. | ||
|
||
Currently there are no published or officially supported versions of these utilities, but they are relatively simple, and can be copied and customized as needed. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Validating CODEOWNERS rules …
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
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 |
---|---|---|
|
@@ -35,15 +35,17 @@ jobs: | |
|
||
- name: Required but missing | ||
if: fromJson(steps.changeset.outputs.CHANGESET).required == true && fromJson(steps.changeset.outputs.CHANGESET).changesetFound == false | ||
uses: marocchino/sticky-pull-request-comment@fcf6fe9e4a0409cd9316a5011435be0f3327f1e1 # ratchet:marocchino/[email protected] | ||
# release notes: https://github.com/marocchino/sticky-pull-request-comment/releases/tag/v2.9.0 | ||
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # ratchet:marocchino/[email protected] | ||
with: | ||
header: changeset | ||
number: ${{ fromJson(steps.changeset.outputs.CHANGESET).pr }} | ||
path: ${{ github.workspace }}/.github/workflows/data/changeset-missing.md | ||
|
||
- name: Required and present | ||
if: fromJson(steps.changeset.outputs.CHANGESET).required == true && fromJson(steps.changeset.outputs.CHANGESET).changesetFound == true | ||
uses: marocchino/sticky-pull-request-comment@fcf6fe9e4a0409cd9316a5011435be0f3327f1e1 # ratchet:marocchino/[email protected] | ||
# release notes: https://github.com/marocchino/sticky-pull-request-comment/releases/tag/v2.9.0 | ||
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # ratchet:marocchino/[email protected] | ||
with: | ||
header: changeset | ||
number: ${{ fromJson(steps.changeset.outputs.CHANGESET).pr }} | ||
|
@@ -53,7 +55,8 @@ jobs: | |
- name: Changeset not required | ||
if: fromJson(steps.changeset.outputs.CHANGESET).required == false && fromJson(steps.changeset.outputs.CHANGESET).changesetFound == true | ||
uses: marocchino/sticky-pull-request-comment@fcf6fe9e4a0409cd9316a5011435be0f3327f1e1 # ratchet:marocchino/[email protected] | ||
# release notes: https://github.com/marocchino/sticky-pull-request-comment/releases/tag/v2.9.0 | ||
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # ratchet:marocchino/[email protected] | ||
with: | ||
header: changeset | ||
number: ${{ fromJson(steps.changeset.outputs.CHANGESET).pr }} | ||
|
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 |
---|---|---|
|
@@ -26,7 +26,8 @@ jobs: | |
run: echo "pr=$(cat pr)" >> $GITHUB_OUTPUT | ||
working-directory: ./results | ||
- name: Post report in comment | ||
uses: marocchino/sticky-pull-request-comment@fcf6fe9e4a0409cd9316a5011435be0f3327f1e1 # ratchet:marocchino/[email protected] | ||
# release notes: https://github.com/marocchino/sticky-pull-request-comment/releases/tag/v2.9.0 | ||
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # ratchet:marocchino/[email protected] | ||
with: | ||
header: linkreport | ||
recreate: true | ||
|
Oops, something went wrong.