Skip to content
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

Page Builder - New PB Element Plugins #4342

Merged
merged 17 commits into from
Oct 18, 2024
Prev Previous commit
Next Next commit
wip
  • Loading branch information
adrians5j committed Oct 18, 2024
commit ebbdea8254c1511d3efdee57894c5ce060062536
3 changes: 3 additions & 0 deletions .github/workflows/pullRequests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ jobs:
run: >-
echo "is-fork-pr=${{ github.event.pull_request.head.repo.fork }}" >>
$GITHUB_OUTPUT
- name: Get a list of packages that changed
id: changed-packages-list
run: yarn workspaces list --since=origin/dev --json
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/wac/pullRequests.wac.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ export const pullRequests = createWorkflow({
name: "Is a PR from a fork",
id: "is-fork-pr",
run: 'echo "is-fork-pr=${{ github.event.pull_request.head.repo.fork }}" >> $GITHUB_OUTPUT'
},
{
name: "Get a list of packages that changed",
id: "changed-packages-list",
run: "yarn workspaces list --since=origin/dev --json"
}
]
}),
Expand Down
39 changes: 22 additions & 17 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16880,21 +16880,38 @@ __metadata:
languageName: unknown
linkType: soft

"@webiny/cli-plugin-extensions@workspace:packages/cli-plugin-extensions":
"@webiny/cli-plugin-extensions@0.0.0, @webiny/cli-plugin-extensions@workspace:packages/cli-plugin-extensions":
version: 0.0.0-use.local
resolution: "@webiny/cli-plugin-extensions@workspace:packages/cli-plugin-extensions"
dependencies:
"@babel/cli": ^7.23.9
"@babel/core": ^7.24.0
"@babel/preset-env": ^7.24.0
"@babel/runtime": ^7.24.0
"@types/inquirer": 8.2.10
"@types/ncp": ^2.0.4
"@types/pluralize": ^0.0.29
"@types/validate-npm-package-name": ^3.0.3
"@webiny/aws-sdk": 0.0.0
"@webiny/cli": 0.0.0
"@webiny/cli-plugin-scaffold": 0.0.0
"@webiny/error": 0.0.0
"@webiny/plugins": 0.0.0
"@webiny/project-utils": 0.0.0
case: ^1.6.3
chalk: ^4.1.0
execa: ^5.0.0
fast-glob: ^3.2.7
find-up: ^5.0.0
glob: ^7.1.2
inquirer: 8.2.6
load-json-file: ^6.2.0
lodash: ^4.17.21
ora: 4.1.1
prettier: ^2.8.3
replace-in-path: ^1.1.0
rimraf: ^5.0.5
ts-morph: ^11.0.0
typescript: 4.9.5
validate-npm-package-name: ^3.0.0
write-json-file: ^4.3.0
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -16964,24 +16981,12 @@ __metadata:
"@types/ncp": ^2.0.4
"@types/pluralize": ^0.0.29
"@types/validate-npm-package-name": ^3.0.3
"@webiny/aws-sdk": 0.0.0
"@webiny/cli": 0.0.0
"@webiny/cli-plugin-extensions": 0.0.0
"@webiny/cli-plugin-scaffold": 0.0.0
"@webiny/error": 0.0.0
"@webiny/project-utils": 0.0.0
case: ^1.6.3
chalk: ^4.1.0
execa: ^5.0.0
fast-glob: ^3.2.7
glob: ^7.1.2
load-json-file: ^6.2.0
lodash: ^4.17.21
replace-in-path: ^1.1.0
rimraf: ^5.0.5
ts-morph: ^11.0.0
typescript: 4.9.5
validate-npm-package-name: ^3.0.0
write-json-file: ^4.3.0
languageName: unknown
linkType: soft

Expand Down
Loading