Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: webiny/webiny-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.41.1
Choose a base ref
...
head repository: webiny/webiny-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.41.2
Choose a head ref

Commits on Nov 7, 2024

  1. ci: update AWS nuke config

    adrians5j committed Nov 7, 2024
    Copy the full SHA
    a57acf1 View commit details
  2. ci: update AWS nuke config

    adrians5j committed Nov 7, 2024
    Copy the full SHA
    9dec59c View commit details
  3. Copy the full SHA
    90f7a44 View commit details
  4. Copy the full SHA
    40f7988 View commit details
  5. Copy the full SHA
    846e6f2 View commit details
  6. Copy the full SHA
    0dc29c1 View commit details
  7. Copy the full SHA
    45e0939 View commit details
  8. Copy the full SHA
    08c9f09 View commit details
  9. Copy the full SHA
    fef2655 View commit details
  10. Copy the full SHA
    1fa00d2 View commit details
  11. Copy the full SHA
    26c9920 View commit details
  12. Copy the full SHA
    d20d370 View commit details
  13. Copy the full SHA
    e2702e9 View commit details
  14. Copy the full SHA
    b06157d View commit details
  15. Copy the full SHA
    e2c6df1 View commit details
  16. Copy the full SHA
    2186e03 View commit details
  17. Copy the full SHA
    8553065 View commit details
  18. Copy the full SHA
    27efcc4 View commit details
  19. Copy the full SHA
    7afe626 View commit details
  20. Copy the full SHA
    b8ea209 View commit details
  21. Copy the full SHA
    456e6b2 View commit details
  22. Copy the full SHA
    6f63755 View commit details
  23. Copy the full SHA
    9c46003 View commit details

Commits on Nov 8, 2024

  1. Copy the full SHA
    33c4930 View commit details
  2. Copy the full SHA
    2a238e6 View commit details
  3. Copy the full SHA
    1a8c0d5 View commit details
  4. Copy the full SHA
    3fa6ae5 View commit details
  5. Copy the full SHA
    ba507ea View commit details
  6. Copy the full SHA
    31e9d87 View commit details
  7. Copy the full SHA
    81a4165 View commit details
  8. Copy the full SHA
    0a1a6e9 View commit details
  9. Copy the full SHA
    ed9627c View commit details
  10. Copy the full SHA
    854dc49 View commit details
  11. Copy the full SHA
    c315bf2 View commit details
  12. Copy the full SHA
    0983271 View commit details
  13. Copy the full SHA
    9a5e1ef View commit details
  14. Copy the full SHA
    6240bf3 View commit details
  15. Copy the full SHA
    fee8900 View commit details
  16. chore: update deps

    adrians5j committed Nov 8, 2024
    Copy the full SHA
    6181913 View commit details
  17. ci: add labeler [no ci]

    adrians5j committed Nov 8, 2024
    Copy the full SHA
    08aadfb View commit details
  18. ci: update glob [no ci]

    adrians5j committed Nov 8, 2024
    Copy the full SHA
    70318a3 View commit details

Commits on Nov 11, 2024

  1. Copy the full SHA
    3e443da View commit details
  2. Copy the full SHA
    9bd4fa2 View commit details
  3. Copy the full SHA
    6ba635c View commit details
  4. Copy the full SHA
    0abd03e View commit details
  5. Copy the full SHA
    2844595 View commit details

Commits on Nov 12, 2024

  1. Copy the full SHA
    ad8f4a2 View commit details
  2. Copy the full SHA
    df163dd View commit details
  3. Copy the full SHA
    3b36f26 View commit details
  4. chore: format code [no ci]

    adrians5j committed Nov 12, 2024
    Copy the full SHA
    050cdcf View commit details
Showing with 3,589 additions and 1,646 deletions.
  1. +7 −0 .github/labeler-config.yml
  2. +9 −1 .github/workflows/cleanup/aws-nuke.yml
  3. +18 −0 .github/workflows/labeler.yml
  4. +306 −128 .github/workflows/pullRequests.yml
  5. +94 −90 .github/workflows/pushDev.yml
  6. +94 −90 .github/workflows/pushNext.yml
  7. +122 −127 .github/workflows/wac/pullRequests.wac.ts
  8. +3 −0 .github/workflows/wac/utils/addToOutputs.ts
  9. +2 −0 .github/workflows/wac/utils/index.ts
  10. +20 −9 .github/workflows/wac/utils/listPackagesWithJestTests.ts
  11. +19 −0 .github/workflows/wac/utils/runNodeScript.ts
  12. +17 −0 .github/workflows/wac/utils/runNodeScripts/getMilestoneToAssign.js
  13. +13 −0 .github/workflows/wac/utils/runNodeScripts/listChangedPackages.js
  14. +10 −0 .github/workflows/wac/utils/runNodeScripts/listPackagesToJestTest.js
  15. +1 −1 docs/DEPLOY_WEBINY_PROJECT_CF_TEMPLATE.yaml
  16. +9 −1 packages/api-dynamodb-to-elasticsearch/src/Operations.ts
  17. +72 −0 packages/api-dynamodb-to-elasticsearch/src/SynchronizationBuilder.ts
  18. +2 −9 packages/api-dynamodb-to-elasticsearch/src/eventHandler.ts
  19. +9 −4 packages/api-dynamodb-to-elasticsearch/src/execute.ts
  20. +8 −2 packages/api-dynamodb-to-elasticsearch/src/executeWithRetry.ts
  21. +1 −0 packages/api-dynamodb-to-elasticsearch/src/index.ts
  22. +4 −0 packages/api-dynamodb-to-elasticsearch/src/types.ts
  23. +3 −3 packages/api-elasticsearch-tasks/__tests__/mocks/store.ts
  24. +172 −0 ...icsearch-tasks/__tests__/tasks/dataSynchronization/ElasticsearchToDynamoDbSynchronization.test.ts
  25. +119 −0 packages/api-elasticsearch-tasks/__tests__/tasks/dataSynchronization/dataSynchronizationTask.test.ts
  26. +40 −0 packages/api-elasticsearch-tasks/__tests__/tasks/dataSynchronization/managers.ts
  27. +2 −0 packages/api-elasticsearch-tasks/jest.setup.js
  28. +10 −1 packages/api-elasticsearch-tasks/package.json
  29. +2 −2 packages/api-elasticsearch-tasks/src/definitions/entry.ts
  30. +2 −2 packages/api-elasticsearch-tasks/src/definitions/table.ts
  31. +5 −5 packages/api-elasticsearch-tasks/src/helpers/scan.ts
  32. +3 −1 packages/api-elasticsearch-tasks/src/index.ts
  33. +18 −2 packages/api-elasticsearch-tasks/src/settings/IndexManager.ts
  34. +13 −9 packages/api-elasticsearch-tasks/src/tasks/Manager.ts
  35. +6 −2 packages/api-elasticsearch-tasks/src/tasks/createIndexes/CreateIndexesTaskRunner.ts
  36. +6 −5 packages/api-elasticsearch-tasks/src/tasks/createIndexes/index.ts
  37. +69 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/DataSynchronizationTaskRunner.ts
  38. +10 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/createFactories.ts
  39. +107 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/elasticsearch/ElasticsearchFetcher.ts
  40. +101 −0 ...s/api-elasticsearch-tasks/src/tasks/dataSynchronization/elasticsearch/ElasticsearchSynchronize.ts
  41. +95 −0 ...earch-tasks/src/tasks/dataSynchronization/elasticsearch/ElasticsearchToDynamoDbSynchronization.ts
  42. +25 −0 ...sticsearch-tasks/src/tasks/dataSynchronization/elasticsearch/abstractions/ElasticsearchFetcher.ts
  43. +21 −0 ...search-tasks/src/tasks/dataSynchronization/elasticsearch/abstractions/ElasticsearchSynchronize.ts
  44. +11 −0 ...pi-elasticsearch-tasks/src/tasks/dataSynchronization/elasticsearch/shouldIgnoreEsResponseError.ts
  45. +52 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/entities/getElasticsearchEntity.ts
  46. +27 −0 ...ages/api-elasticsearch-tasks/src/tasks/dataSynchronization/entities/getElasticsearchEntityType.ts
  47. +30 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/entities/getTable.ts
  48. +3 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/entities/index.ts
  49. +79 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/index.ts
  50. +62 −0 packages/api-elasticsearch-tasks/src/tasks/dataSynchronization/types.ts
  51. +6 −2 packages/api-elasticsearch-tasks/src/tasks/enableIndexing/EnableIndexingTaskRunner.ts
  52. +7 −6 packages/api-elasticsearch-tasks/src/tasks/enableIndexing/index.ts
  53. +1 −0 packages/api-elasticsearch-tasks/src/tasks/index.ts
  54. +6 −2 packages/api-elasticsearch-tasks/src/tasks/reindexing/ReindexingTaskRunner.ts
  55. +7 −6 packages/api-elasticsearch-tasks/src/tasks/reindexing/reindexingTaskDefinition.ts
  56. +14 −5 packages/api-elasticsearch-tasks/src/types.ts
  57. +2 −0 packages/api-elasticsearch-tasks/tsconfig.build.json
  58. +6 −0 packages/api-elasticsearch-tasks/tsconfig.json
  59. +8 −4 packages/api-elasticsearch/src/cursors.ts
  60. +29 −18 packages/api-elasticsearch/src/types.ts
  61. +21 −0 packages/api-form-builder-so-ddb-es/src/index.ts
  62. +13 −9 packages/api-form-builder-so-ddb-es/src/types.ts
  63. +2 −3 packages/api-headless-cms-bulk-actions/src/handlers/eventBridgeEventHandler.ts
  64. +8 −2 packages/api-headless-cms-bulk-actions/src/plugins/createBulkActionGraphQL.ts
  65. +8 −2 packages/api-headless-cms-bulk-actions/src/plugins/createDefaultGraphQL.ts
  66. +74 −100 packages/api-headless-cms-bulk-actions/src/tasks/createEmptyTrashBinsTask.ts
  67. +12 −10 packages/api-headless-cms-bulk-actions/src/types.ts
  68. +10 −0 packages/api-headless-cms-ddb-es/src/index.ts
  69. +9 −7 packages/api-headless-cms-ddb-es/src/types.ts
  70. +7 −2 packages/api-headless-cms-import-export/src/graphql/index.ts
  71. +206 −0 packages/api-headless-cms/__tests__/contentAPI/references/publishedAndUnpublished.test.ts
  72. +7 −4 packages/api-headless-cms/__tests__/contentAPI/republish.entries.test.ts
  73. +34 −0 packages/api-headless-cms/__tests__/storageOperations/context.ts
  74. +6 −4 packages/api-headless-cms/__tests__/storageOperations/entries.test.ts
  75. +6 −4 packages/api-headless-cms/__tests__/storageOperations/fieldUniqueValues.test.ts
  76. +1 −0 packages/api-headless-cms/package.json
  77. +1 −0 packages/api-headless-cms/src/crud/contentModel/validateModelFields.ts
  78. +2 −2 packages/api-headless-cms/src/fieldConverters/CmsModelObjectFieldConverterPlugin.ts
  79. +2 −1 packages/api-headless-cms/tsconfig.build.json
  80. +5 −2 packages/api-headless-cms/tsconfig.json
  81. +10 −0 packages/api-page-builder-so-ddb-es/src/index.ts
  82. +9 −6 packages/api-page-builder-so-ddb-es/src/types.ts
  83. +1 −21 packages/api-security/src/utils/createGroupsTeamsAuthorizer/listPermissionsFromGroupsAndTeams.ts
  84. +2 −2 packages/app-aco/src/components/AdvancedSearch/QueryBuilderDrawer/QueryBuilderDrawerPresenter.ts
  85. +2 −1 packages/app-aco/src/components/AdvancedSearch/QuerySaverDialog/QuerySaverDialogPresenter.ts
  86. +10 −2 packages/app-aco/src/contexts/records.tsx
  87. +22 −20 packages/app-aco/src/graphql/records/listRecords.ts
  88. +1 −0 packages/app-admin/package.json
  89. +10 −3 packages/app-admin/src/components/LexicalEditor/LexicalEditor.tsx
  90. +0 −23 packages/app-admin/src/hooks/useSnackbar.ts
  91. +45 −0 packages/app-admin/src/hooks/useSnackbar.tsx
  92. +1 −0 packages/app-admin/tsconfig.build.json
  93. +3 −0 packages/app-admin/tsconfig.json
  94. +30 −7 packages/app-file-manager/src/components/BottomInfoBar/SupportedFileTypes.tsx
  95. +2 −1 ...le-manager/src/components/BulkActions/ActionEdit/BatchEditorDialog/BatchEditorDialogPresenter.tsx
  96. +3 −0 packages/app-file-manager/src/modules/FileManagerRenderer/FileManagerView/FileManagerView.tsx
  97. +2 −2 packages/app-file-manager/src/modules/HeadlessCms/fileRenderer/fileFields.tsx
  98. +7 −10 packages/app-headless-cms-common/src/createFieldsList.ts
  99. +0 −30 packages/app-headless-cms-common/src/entries.graphql.ts
  100. +2 −0 packages/app-headless-cms/src/ContentEntryEditorConfig.ts
  101. +22 −0 packages/app-headless-cms/src/admin/components/ContentEntries/BottomInfoBar/BottomInfoBar.styled.tsx
  102. +23 −0 packages/app-headless-cms/src/admin/components/ContentEntries/BottomInfoBar/BottomInfoBar.tsx
  103. +19 −0 packages/app-headless-cms/src/admin/components/ContentEntries/BottomInfoBar/ListMeta.tsx
  104. +1 −0 packages/app-headless-cms/src/admin/components/ContentEntries/BottomInfoBar/index.tsx
  105. +1 −0 packages/app-headless-cms/src/admin/components/ContentEntries/LoadingMore/styled.tsx
  106. +3 −2 packages/app-headless-cms/src/admin/components/ContentEntries/Table/index.tsx
  107. +2 −9 packages/app-headless-cms/src/admin/components/ContentEntries/Table/styled.tsx
  108. +20 −12 packages/app-headless-cms/src/admin/components/ContentEntryForm/ContentEntryFormProvider.tsx
  109. +4 −3 packages/app-headless-cms/src/admin/components/ContentEntryForm/DefaultLayout.tsx
  110. +8 −3 packages/app-headless-cms/src/admin/components/ContentEntryForm/useBind.tsx
  111. +2 −2 packages/app-headless-cms/src/admin/components/Decorators/ShowConfirmationOnDelete.tsx
  112. +2 −2 packages/app-headless-cms/src/admin/components/Decorators/ShowConfirmationOnDeleteRevision.tsx
  113. +4 −2 packages/app-headless-cms/src/admin/components/Decorators/ShowConfirmationOnPublish.tsx
  114. +2 −2 packages/app-headless-cms/src/admin/components/Decorators/ShowConfirmationOnUnpublish.tsx
  115. +4 −4 packages/app-headless-cms/src/admin/components/FieldEditor/Field.tsx
  116. +1 −1 packages/app-headless-cms/src/admin/contexts/Cms/index.tsx
  117. +2 −2 packages/app-headless-cms/src/admin/plugins/editor/defaultBar/SaveContentModelButton.tsx
  118. +39 −51 packages/app-headless-cms/src/admin/plugins/fieldRenderers/DynamicSection.tsx
  119. +1 −1 packages/app-headless-cms/src/admin/plugins/fieldRenderers/dateTime/Input.tsx
  120. +4 −7 packages/app-headless-cms/src/admin/plugins/fieldRenderers/dateTime/dateTimeFields.tsx
  121. +6 −6 packages/app-headless-cms/src/admin/plugins/fieldRenderers/lexicalText/lexicalTextInputs.tsx
  122. +4 −7 packages/app-headless-cms/src/admin/plugins/fieldRenderers/longText/longTexts.tsx
  123. +4 −7 packages/app-headless-cms/src/admin/plugins/fieldRenderers/number/numberInputs.tsx
  124. +3 −19 packages/app-headless-cms/src/admin/plugins/fieldRenderers/object/multipleObjects.tsx
  125. +53 −42 packages/app-headless-cms/src/admin/plugins/fieldRenderers/object/multipleObjectsAccordion.tsx
  126. +0 −1 packages/app-headless-cms/src/admin/plugins/fieldRenderers/richText/richTextInputs.tsx
  127. +4 −7 packages/app-headless-cms/src/admin/plugins/fieldRenderers/text/textInputs.tsx
  128. +4 −1 packages/app-headless-cms/src/admin/views/contentEntries/ContentEntries.tsx
  129. +44 −0 packages/app-headless-cms/src/admin/views/contentEntries/ContentEntriesDebounceRender.tsx
  130. +2 −2 packages/app-headless-cms/src/admin/views/contentEntries/ContentEntry/RevisionsList/useRevision.tsx
  131. +6 −0 packages/app-headless-cms/src/admin/views/contentEntries/Table/Main.tsx
  132. +1 −1 packages/app-page-builder-elements/src/components/Element.tsx
  133. +48 −10 packages/app-page-builder-elements/src/components/ErrorBoundary.tsx
  134. +4 −4 packages/app-page-builder-elements/src/modifiers/styles/border.ts
  135. +13 −0 packages/app-page-builder-elements/src/renderers/paragraph.tsx
  136. +0 −1 packages/app-page-builder/package.json
  137. +22 −0 packages/app-page-builder/src/admin/components/BottomInfoBar/BottomInfoBar.styled.tsx
  138. +23 −0 packages/app-page-builder/src/admin/components/BottomInfoBar/BottomInfoBar.tsx
  139. +19 −0 packages/app-page-builder/src/admin/components/BottomInfoBar/ListMeta.tsx
  140. +1 −0 packages/app-page-builder/src/admin/components/BottomInfoBar/index.tsx
  141. +1 −1 packages/app-page-builder/src/admin/components/Table/LoadingMore/index.tsx
  142. +1 −0 packages/app-page-builder/src/admin/components/Table/LoadingMore/styled.tsx
  143. +3 −2 packages/app-page-builder/src/admin/components/Table/Table/Table.tsx
  144. +5 −0 packages/app-page-builder/src/admin/components/Table/Table/styled.tsx
  145. +6 −0 packages/app-page-builder/src/admin/views/Pages/Table/Main.tsx
  146. +0 −166 packages/app-page-builder/src/editor/components/Element.tsx
  147. +2 −1 packages/app-page-builder/src/editor/config/Content/Content.tsx
  148. +42 −5 packages/app-page-builder/src/editor/contexts/EditorPageElementsProvider/ElementControls.tsx
  149. +13 −1 packages/app-page-builder/src/editor/contexts/EditorPageElementsProvider/ElementControlsOverlay.tsx
  150. +1 −0 packages/app-page-builder/src/editor/contexts/EventActionHandlerProvider.tsx
  151. +2 −0 packages/app-page-builder/src/editor/defaultConfig/ActionPlugins.tsx
  152. +2 −0 packages/app-page-builder/src/editor/hooks/index.ts
  153. +9 −0 packages/app-page-builder/src/editor/hooks/useGetElementById.ts
  154. +57 −0 packages/app-page-builder/src/editor/hooks/useMoveElement.ts
  155. +1 −0 packages/app-page-builder/src/editor/recoil/actions/index.ts
  156. +56 −0 packages/app-page-builder/src/editor/recoil/actions/moveElement/action.ts
  157. +8 −0 packages/app-page-builder/src/editor/recoil/actions/moveElement/event.ts
  158. +2 −0 packages/app-page-builder/src/editor/recoil/actions/moveElement/index.ts
  159. +13 −0 packages/app-page-builder/src/editor/recoil/actions/moveElement/plugin.ts
  160. +12 −0 packages/app-page-builder/src/editor/recoil/actions/moveElement/types.ts
  161. +10 −3 packages/app-page-builder/src/pageEditor/state/page/pageAtom.ts
  162. +2 −0 packages/app-page-builder/src/render/PageBuilder.tsx
  163. +0 −5 packages/app-page-builder/src/types.ts
  164. +8 −0 packages/cli-plugin-extensions/src/generateExtension.ts
  165. +4 −1 packages/cli-plugin-extensions/src/promptQuestions.ts
  166. +5 −16 packages/cli-plugin-extensions/tsconfig.build.json
  167. +4 −12 packages/cli-plugin-extensions/tsconfig.json
  168. +3 −10 packages/cli-plugin-scaffold-extensions/tsconfig.build.json
  169. +2 −1 packages/cwp-template-aws/cli/deploy/deploy.js
  170. +1 −0 packages/cwp-template-aws/package.json
  171. +3 −32 packages/db-dynamodb/src/DynamoDbDriver.ts
  172. +0 −24 packages/db-dynamodb/src/types.ts
  173. +3 −2 packages/db-dynamodb/src/utils/batchRead.ts
  174. +3 −0 packages/db/package.json
  175. +49 −0 packages/db/src/DbRegistry.ts
  176. +13 −241 packages/db/src/index.ts
  177. +26 −0 packages/db/src/types.ts
  178. +1 −1 packages/db/tsconfig.build.json
  179. +7 −2 packages/db/tsconfig.json
  180. +1 −1 packages/form/src/FormPresenter.ts
  181. +4 −1 packages/form/src/types.ts
  182. +3 −6 packages/handler-db/src/index.ts
  183. +1 −1 packages/handler-db/src/types.ts
  184. +9 −0 packages/handler-graphql/src/plugins/GraphQLSchemaPlugin.ts
  185. +8 −2 packages/lexical-editor-pb-element/src/LexicalEditor.tsx
  186. +3 −3 packages/lexical-editor/src/components/Editor/RichTextEditor.tsx
  187. +5 −9 packages/lexical-editor/src/components/LexicalHtmlRenderer.tsx
  188. +3 −3 packages/lexical-editor/src/context/RichTextEditorContext.tsx
  189. +2 −2 packages/lexical-nodes/src/FontColorNode.ts
  190. +3 −3 packages/lexical-nodes/src/HeadingNode.ts
  191. +6 −6 packages/lexical-nodes/src/ListNode.ts
  192. +5 −5 packages/lexical-nodes/src/ParagraphNode.ts
  193. +3 −8 packages/lexical-nodes/src/QuoteNode.ts
  194. +3 −3 packages/lexical-nodes/src/TypographyNode.ts
  195. +14 −10 packages/lexical-theme/src/createTheme.ts
  196. +2 −2 packages/lexical-theme/src/utils/toTypographyEmotionMap.ts
  197. +2 −1 packages/project-utils/packages/createBabelConfigForReact.js
  198. +17 −1 packages/pubsub/src/index.ts
  199. +19 −0 packages/pulumi-aws/src/apps/website/createWebsitePulumiApp.ts
  200. +1 −1 packages/react-composition/__tests__/composition.test.tsx
  201. +5 −1 packages/react-composition/src/Compose.tsx
  202. +6 −4 packages/react-composition/src/CompositionScope.tsx
  203. +11 −10 packages/react-composition/src/Context.tsx
  204. +1 −0 packages/react-rich-text-lexical-renderer/package.json
  205. +10 −4 packages/react-rich-text-lexical-renderer/src/index.tsx
  206. +1 −0 packages/react-rich-text-lexical-renderer/tsconfig.build.json
  207. +3 −0 packages/react-rich-text-lexical-renderer/tsconfig.json
  208. +6 −3 packages/tasks/src/runner/TaskManager.ts
  209. +1 −1 packages/tasks/src/runner/TaskRunner.ts
  210. +2 −0 packages/tasks/src/runner/abstractions/TaskRunner.ts
  211. +2 −0 packages/tasks/src/types.ts
  212. +7 −1 yarn.lock
7 changes: 7 additions & 0 deletions .github/labeler-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Used by `.github/workflows/labeler.yml` to configure the `actions/labeler` GitHub Action.
# This file cannot be also placed in `.github/workflows` because it is not a workflow file,
# and we do not want GitHub Actions to try to run it as a workflow.

new-admin-ui:
- changed-files:
- any-glob-to-any-file: 'packages/admin-ui/**'
10 changes: 9 additions & 1 deletion .github/workflows/cleanup/aws-nuke.yml
Original file line number Diff line number Diff line change
@@ -16,8 +16,16 @@ accounts:
- "s3://webiny-ci"
IAMRole:
- "GitHubActionsWebinyJs"
IAMPolicy:
- "DeployWebinyProjectGroup1Policy"
- "DeployWebinyProjectGroup2Policy"
- "DeployWebinyProjectGroup3Policy"
- "DeployWebinyProjectExtra"
IAMRolePolicyAttachment:
- "GitHubActionsWebinyJs -> AdministratorAccess"
- "GitHubActionsWebinyJs -> DeployWebinyProjectGroup1Policy"
- "GitHubActionsWebinyJs -> DeployWebinyProjectGroup2Policy"
- "GitHubActionsWebinyJs -> DeployWebinyProjectGroup3Policy"
- "GitHubActionsWebinyJs -> DeployWebinyProjectExtra"

resource-types:
# These resource types will be destroyed.
18 changes: 18 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/labeler@v5
with:
repo-token: ${{ secrets.GH_TOKEN }}
configuration-path: .github/labeler-config.yml
Loading