Fix Python workflow triggers on upstream-based branch#2
Closed
tae898 wants to merge 5 commits into
Closed
Conversation
tae898
pushed a commit
that referenced
this pull request
Jun 28, 2026
…0 in /studio in the build-tools group [skip ci] Bumps the build-tools group in /studio with 1 update: [webpack](https://github.com/webpack/webpack). Updates `webpack` from 5.104.1 to 5.105.0 Release notes *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > v5.105.0 > -------- > > ### Minor Changes > > * Allow resolving worker module by export condition name when using `new Worker()` (by [`@hai-x`](https://github.com/hai-x) in [#20353](https://redirect.github.com/webpack/webpack/pull/20353)) > * Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by [`@hai-x`](https://github.com/hai-x) in [#20320](https://redirect.github.com/webpack/webpack/pull/20320)) > * Added the `tsconfig` option for the `resolver` options (replacement for `tsconfig-paths-webpack-plugin`). Can be `false` (disabled), `true` (use the default `tsconfig.json` file to search for it), a string path to `tsconfig.json`, or an object with `configFile` and `references` options. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20400](https://redirect.github.com/webpack/webpack/pull/20400)) > * Support `import.defer()` for context modules. (by [`@ahabhgk`](https://github.com/ahabhgk) in [#20399](https://redirect.github.com/webpack/webpack/pull/20399)) > * Added support for array values to the `devtool` option. (by [`@hai-x`](https://github.com/hai-x) in [#20191](https://redirect.github.com/webpack/webpack/pull/20191)) > * Improve rendering node built-in modules for ECMA module output. (by [`@hai-x`](https://github.com/hai-x) in [#20255](https://redirect.github.com/webpack/webpack/pull/20255)) > * Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20312](https://redirect.github.com/webpack/webpack/pull/20312)) > > ### Patch Changes > > * Fixed ESM default export handling for `.mjs` files in Module Federation (by [`@y-okt`](https://github.com/y-okt) in [#20189](https://redirect.github.com/webpack/webpack/pull/20189)) > * Optimized `import.meta.env` handling in destructuring assignments by using cached stringified environment definitions. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20313](https://redirect.github.com/webpack/webpack/pull/20313)) > * Respect the `stats.errorStack` option in stats output. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20258](https://redirect.github.com/webpack/webpack/pull/20258)) > * Fixed a bug where declaring a `module` variable in module scope would conflict with the default `moduleArgument`. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20265](https://redirect.github.com/webpack/webpack/pull/20265)) > * Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., `virtual:routes`), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20390](https://redirect.github.com/webpack/webpack/pull/20390)) > * Fixed Worker self-import handling to support various URL patterns (e.g., `import.meta.url`, `new URL(import.meta.url)`, `new URL(import.meta.url, import.meta.url)`, `new URL("./index.js", import.meta.url)`). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20381](https://redirect.github.com/webpack/webpack/pull/20381)) > * Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20345](https://redirect.github.com/webpack/webpack/pull/20345)) > * Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20251](https://redirect.github.com/webpack/webpack/pull/20251)) > * Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by [`@hai-x`](https://github.com/hai-x) in [#20346](https://redirect.github.com/webpack/webpack/pull/20346)) > * Fixed `import.meta.env.xxx` behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20289](https://redirect.github.com/webpack/webpack/pull/20289)) > * Improved parsing error reporting by adding a link to the loader documentation. (by [`@gaurav10gg`](https://github.com/gaurav10gg) in [#20244](https://redirect.github.com/webpack/webpack/pull/20244)) > * Fix typescript types. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20305](https://redirect.github.com/webpack/webpack/pull/20305)) > * Add declaration for unused harmony import specifier. (by [`@hai-x`](https://github.com/hai-x) in [#20286](https://redirect.github.com/webpack/webpack/pull/20286)) > * Fix compressibility of modules while retaining portability. (by [`@dmichon-msft`](https://github.com/dmichon-msft) in [#20287](https://redirect.github.com/webpack/webpack/pull/20287)) > * Optimize source map generation: only include `ignoreList` property when it has content, avoiding empty arrays in source maps. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20319](https://redirect.github.com/webpack/webpack/pull/20319)) > * Preserve star exports for dependencies in ECMA module output. (by [`@hai-x`](https://github.com/hai-x) in [#20293](https://redirect.github.com/webpack/webpack/pull/20293)) ... (truncated) Changelog *Sourced from [webpack's changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md).* > 5.105.0 > ------- > > ### Minor Changes > > * Allow resolving worker module by export condition name when using `new Worker()` (by [`@hai-x`](https://github.com/hai-x) in [#20353](https://redirect.github.com/webpack/webpack/pull/20353)) > * Detect conditional imports to avoid compile-time linking errors for non-existent exports. (by [`@hai-x`](https://github.com/hai-x) in [#20320](https://redirect.github.com/webpack/webpack/pull/20320)) > * Added the `tsconfig` option for the `resolver` options (replacement for `tsconfig-paths-webpack-plugin`). Can be `false` (disabled), `true` (use the default `tsconfig.json` file to search for it), a string path to `tsconfig.json`, or an object with `configFile` and `references` options. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20400](https://redirect.github.com/webpack/webpack/pull/20400)) > * Support `import.defer()` for context modules. (by [`@ahabhgk`](https://github.com/ahabhgk) in [#20399](https://redirect.github.com/webpack/webpack/pull/20399)) > * Added support for array values to the `devtool` option. (by [`@hai-x`](https://github.com/hai-x) in [#20191](https://redirect.github.com/webpack/webpack/pull/20191)) > * Improve rendering node built-in modules for ECMA module output. (by [`@hai-x`](https://github.com/hai-x) in [#20255](https://redirect.github.com/webpack/webpack/pull/20255)) > * Unknown import.meta properties are now determined at runtime instead of being statically analyzed at compile time. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20312](https://redirect.github.com/webpack/webpack/pull/20312)) > > ### Patch Changes > > * Fixed ESM default export handling for `.mjs` files in Module Federation (by [`@y-okt`](https://github.com/y-okt) in [#20189](https://redirect.github.com/webpack/webpack/pull/20189)) > * Optimized `import.meta.env` handling in destructuring assignments by using cached stringified environment definitions. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20313](https://redirect.github.com/webpack/webpack/pull/20313)) > * Respect the `stats.errorStack` option in stats output. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20258](https://redirect.github.com/webpack/webpack/pull/20258)) > * Fixed a bug where declaring a `module` variable in module scope would conflict with the default `moduleArgument`. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20265](https://redirect.github.com/webpack/webpack/pull/20265)) > * Fix VirtualUrlPlugin to set resourceData.context for proper module resolution. Previously, when context was not set, it would fallback to the virtual scheme path (e.g., `virtual:routes`), which is not a valid filesystem path, causing subsequent resolve operations to fail. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20390](https://redirect.github.com/webpack/webpack/pull/20390)) > * Fixed Worker self-import handling to support various URL patterns (e.g., `import.meta.url`, `new URL(import.meta.url)`, `new URL(import.meta.url, import.meta.url)`, `new URL("./index.js", import.meta.url)`). Workers that resolve to the same module are now properly deduplicated, regardless of the URL syntax used. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20381](https://redirect.github.com/webpack/webpack/pull/20381)) > * Reuse the same async entrypoint for the same Worker URL within a module to avoid circular dependency warnings when multiple Workers reference the same resource. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20345](https://redirect.github.com/webpack/webpack/pull/20345)) > * Fixed a bug where a self-referencing dependency would have an unused export name when imported inside a web worker. (by [`@samarthsinh2660`](https://github.com/samarthsinh2660) in [#20251](https://redirect.github.com/webpack/webpack/pull/20251)) > * Fix missing export generation when concatenated modules in different chunks share the same runtime in module library bundles. (by [`@hai-x`](https://github.com/hai-x) in [#20346](https://redirect.github.com/webpack/webpack/pull/20346)) > * Fixed `import.meta.env.xxx` behavior: when accessing a non-existent property, it now returns empty object instead of full object at runtime. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20289](https://redirect.github.com/webpack/webpack/pull/20289)) > * Improved parsing error reporting by adding a link to the loader documentation. (by [`@gaurav10gg`](https://github.com/gaurav10gg) in [#20244](https://redirect.github.com/webpack/webpack/pull/20244)) > * Fix typescript types. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20305](https://redirect.github.com/webpack/webpack/pull/20305)) > * Add declaration for unused harmony import specifier. (by [`@hai-x`](https://github.com/hai-x) in [#20286](https://redirect.github.com/webpack/webpack/pull/20286)) > * Fix compressibility of modules while retaining portability. (by [`@dmichon-msft`](https://github.com/dmichon-msft) in [#20287](https://redirect.github.com/webpack/webpack/pull/20287)) > * Optimize source map generation: only include `ignoreList` property when it has content, avoiding empty arrays in source maps. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20319](https://redirect.github.com/webpack/webpack/pull/20319)) ... (truncated) Commits * [`1486f9a`](webpack/webpack@1486f9a) chore(release): new release * [`1a517f6`](webpack/webpack@1a517f6) feat: added the `tsconfig` option for the `resolver` options ([#20400](https://redirect.github.com/webpack/webpack/issues/20400)) * [`7b3b0f7`](webpack/webpack@7b3b0f7) feat: support `import.defer()` for context modules * [`c4a6a92`](webpack/webpack@c4a6a92) refactor: more types and increase types coverage * [`5ecc58d`](webpack/webpack@5ecc58d) feat: consider asset module as side-effect-free ([#20352](https://redirect.github.com/webpack/webpack/issues/20352)) * [`cce0f69`](webpack/webpack@cce0f69) test: avoid comma operator in BinaryMiddleware test ([#20398](https://redirect.github.com/webpack/webpack/issues/20398)) * [`cd4793d`](webpack/webpack@cd4793d) feat: support import specifier guard ([#20320](https://redirect.github.com/webpack/webpack/issues/20320)) * [`fe48655`](webpack/webpack@fe48655) docs: update examples ([#20397](https://redirect.github.com/webpack/webpack/issues/20397)) * [`de107f8`](webpack/webpack@de107f8) fix(VirtualUrlPlugin): set resourceData.context to avoid invalid fallback ([#2](https://redirect.github.com/webpack/webpack/issues/2)... * [`a656ab1`](webpack/webpack@a656ab1) test: add self-import test case for dynamic import ([#20389](https://redirect.github.com/webpack/webpack/issues/20389)) * Additional commits viewable in [compare view](webpack/webpack@v5.104.1...v5.105.0) Maintainer changes This version was pushed to npm by [GitHub Actions](<https://www.npmjs.com/~GitHub> Actions), a new releaser for webpack since your current version. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
tae898
pushed a commit
that referenced
this pull request
Jun 28, 2026
…3 in /studio in the build-tools group [skip ci] [//]: # (dependabot-start)⚠️ \*\*Dependabot is rebasing this PR\*\*⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the build-tools group in /studio with 1 update: [webpack](https://github.com/webpack/webpack). Updates `webpack` from 5.105.2 to 5.105.3 Release notes *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > v5.105.3 > -------- > > ### Patch Changes > > * Context modules now handle rejections correctly. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20455](https://redirect.github.com/webpack/webpack/pull/20455)) > * Only mark asset modules as side-effect-free when `experimental.futureDefaults` is set to true, so asset-copying use cases (e.g. `import "./x.png"`) won’t break unless the option is enabled. (by [`@hai-x`](https://github.com/hai-x) in [#20535](https://redirect.github.com/webpack/webpack/pull/20535)) > * Add the missing **webpack\_exports** declaration in certain cases when bundling a JS entry together with non-JS entries (e.g., CSS entry or asset module entry). (by [`@hai-x`](https://github.com/hai-x) in [#20463](https://redirect.github.com/webpack/webpack/pull/20463)) > * Fixed HMR failure for CSS modules with [`@import`](https://github.com/import) when exportType !== "link". When exportType is not "link", CSS modules now behave like JavaScript modules and don't require special HMR handling, allowing [`@import`](https://github.com/import) CSS to work correctly during hot module replacement. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20514](https://redirect.github.com/webpack/webpack/pull/20514)) > * Fixed an issue where empty JavaScript files were generated for CSS-only entry points. The code now correctly checks if entry modules have JavaScript source types before determining whether to generate a JS file. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20454](https://redirect.github.com/webpack/webpack/pull/20454)) > * Do not crash when a referenced chunk is not a runtime chunk. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20461](https://redirect.github.com/webpack/webpack/pull/20461)) > * Fix some types. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20412](https://redirect.github.com/webpack/webpack/pull/20412)) > * Ensure that missing module error are thrown after the interception handler (if present), allowing module interception to customize the module factory. (by [`@hai-x`](https://github.com/hai-x) in [#20510](https://redirect.github.com/webpack/webpack/pull/20510)) > * Added `createRequire` support for ECMA modules. (by [`@stefanbinoj`](https://github.com/stefanbinoj) in [#20497](https://redirect.github.com/webpack/webpack/pull/20497)) > * Added category for CJS reexport dependency to fix issues with ECMA modules. (by [`@hai-x`](https://github.com/hai-x) in [#20444](https://redirect.github.com/webpack/webpack/pull/20444)) > * Implement immutable bytes for `bytes` import attribute to match tc39 spec. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20481](https://redirect.github.com/webpack/webpack/pull/20481)) > * Fixed deterministic search for graph roots regardless of edge order. (by [`@veeceey`](https://github.com/veeceey) in [#20452](https://redirect.github.com/webpack/webpack/pull/20452)) Changelog *Sourced from [webpack's changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md).* > 5.105.3 > ------- > > ### Patch Changes > > * Context modules now handle rejections correctly. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20455](https://redirect.github.com/webpack/webpack/pull/20455)) > * Only mark asset modules as side-effect-free when `experimental.futureDefaults` is set to true, so asset-copying use cases (e.g. `import "./x.png"`) won’t break unless the option is enabled. (by [`@hai-x`](https://github.com/hai-x) in [#20535](https://redirect.github.com/webpack/webpack/pull/20535)) > * Add the missing **webpack\_exports** declaration in certain cases when bundling a JS entry together with non-JS entries (e.g., CSS entry or asset module entry). (by [`@hai-x`](https://github.com/hai-x) in [#20463](https://redirect.github.com/webpack/webpack/pull/20463)) > * Fixed HMR failure for CSS modules with [`@import`](https://github.com/import) when exportType !== "link". When exportType is not "link", CSS modules now behave like JavaScript modules and don't require special HMR handling, allowing [`@import`](https://github.com/import) CSS to work correctly during hot module replacement. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20514](https://redirect.github.com/webpack/webpack/pull/20514)) > * Fixed an issue where empty JavaScript files were generated for CSS-only entry points. The code now correctly checks if entry modules have JavaScript source types before determining whether to generate a JS file. (by [`@xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#20454](https://redirect.github.com/webpack/webpack/pull/20454)) > * Do not crash when a referenced chunk is not a runtime chunk. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20461](https://redirect.github.com/webpack/webpack/pull/20461)) > * Fix some types. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20412](https://redirect.github.com/webpack/webpack/pull/20412)) > * Ensure that missing module error are thrown after the interception handler (if present), allowing module interception to customize the module factory. (by [`@hai-x`](https://github.com/hai-x) in [#20510](https://redirect.github.com/webpack/webpack/pull/20510)) > * Added `createRequire` support for ECMA modules. (by [`@stefanbinoj`](https://github.com/stefanbinoj) in [#20497](https://redirect.github.com/webpack/webpack/pull/20497)) > * Added category for CJS reexport dependency to fix issues with ECMA modules. (by [`@hai-x`](https://github.com/hai-x) in [#20444](https://redirect.github.com/webpack/webpack/pull/20444)) > * Implement immutable bytes for `bytes` import attribute to match tc39 spec. (by [`@alexander-akait`](https://github.com/alexander-akait) in [#20481](https://redirect.github.com/webpack/webpack/pull/20481)) > * Fixed deterministic search for graph roots regardless of edge order. (by [`@veeceey`](https://github.com/veeceey) in [#20452](https://redirect.github.com/webpack/webpack/pull/20452)) Commits * [`714a0e3`](webpack/webpack@714a0e3) chore(release): new release ([#20448](https://redirect.github.com/webpack/webpack/issues/20448)) * [`c323b39`](webpack/webpack@c323b39) chore(deps-dev): bump nyc from 17.1.0 to 18.0.0 ([#20539](https://redirect.github.com/webpack/webpack/issues/20539)) * [`8a01dfe`](webpack/webpack@8a01dfe) refactor: deduplicate export presence logic in Harmony dependency classes ([#2](https://redirect.github.com/webpack/webpack/issues/2)... * [`b9fc7b3`](webpack/webpack@b9fc7b3) chore(deps): bump test/test262-cases in the dependencies group ([#20541](https://redirect.github.com/webpack/webpack/issues/20541)) * [`f8a5ac3`](webpack/webpack@f8a5ac3) test: add coverage for nwjs exports condition and CSS modules with webworker ... * [`59bf024`](webpack/webpack@59bf024) test: add coverage for external script in EnvironmentNotSupportAsyncWarning (... * [`4c79ac2`](webpack/webpack@4c79ac2) test: add missing coverage for formatLocation and formatSize ([#20534](https://redirect.github.com/webpack/webpack/issues/20534)) * [`4f5c0a8`](webpack/webpack@4f5c0a8) fix: mark asset module as side-effect-free when futureDefaults ([#20535](https://redirect.github.com/webpack/webpack/issues/20535)) * [`87987ca`](webpack/webpack@87987ca) test: add test * [`67c5aae`](webpack/webpack@67c5aae) test: add configCase for ESM prefetch/preload under neutral target ([#20524](https://redirect.github.com/webpack/webpack/issues/20524)) * Additional commits viewable in [compare view](webpack/webpack@v5.105.2...v5.105.3) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this PR do?
Cherry-picks the GitHub Actions workflow fix onto a branch based on
upstream-mainso the Python workflows trigger correctly without unrelated Java path filters.Motivation
The upstream-based branch needed the workflow trigger fix from
mainto restore the expected GitHub Actions behavior for the Python bindings and examples jobs.Related issues
Cherry-picks
c30803c468d53f7183e0056e717428e4cd5314a0frommain.Additional Notes
This change removes unnecessary Java file path entries from:
.github/workflows/test-python-bindings.yml.github/workflows/test-python-examples.ymlChecklist
mvn clean packagecommand