Skip to content

[ACTIONS] JIRA - Create Task - the Organizations field is not applying #17799

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jcortes
Copy link
Collaborator

@jcortes jcortes commented Jul 24, 2025

WHY

Resolves #17214

Summary by CodeRabbit

  • New Features

    • Improved dynamic field option handling for Jira actions, including enhanced support for autocomplete and array-typed fields with predefined values.
    • Added advanced autocomplete logic for assignee and issue link fields.
  • Bug Fixes

    • Enhanced error handling for dynamic field option fetching in Jira actions.
  • Chores

    • Updated version numbers across multiple Jira actions and sources for consistency.

@jcortes jcortes self-assigned this Jul 24, 2025
Copy link

vercel bot commented Jul 24, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

3 Skipped Deployments
Name Status Preview Comments Updated (UTC)
docs-v2 ⬜️ Ignored (Inspect) Visit Preview Jul 24, 2025 10:31pm
pipedream-docs ⬜️ Ignored (Inspect) Jul 24, 2025 10:31pm
pipedream-docs-redirect-do-not-edit ⬜️ Ignored (Inspect) Jul 24, 2025 10:31pm

Copy link
Contributor

coderabbitai bot commented Jul 24, 2025

Walkthrough

This update primarily consists of version number increments across numerous Jira action and source modules. Additionally, internal logic for dynamic field option fetching in components/jira/actions/common/issue.mjs is refactored, and new constants for autocomplete handling are introduced in components/jira/common/constants.mjs. No breaking changes to public APIs are present.

Changes

File(s) Change Summary
components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs
components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs
components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs
components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs
components/jira/actions/assign-issue/assign-issue.mjs
components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs
components/jira/actions/create-issue/create-issue.mjs
components/jira/actions/create-version/create-version.mjs
components/jira/actions/delete-project/delete-project.mjs
components/jira/actions/get-all-projects/get-all-projects.mjs
components/jira/actions/get-issue/get-issue.mjs
components/jira/actions/get-task/get-task.mjs
components/jira/actions/get-transitions/get-transitions.mjs
components/jira/actions/get-user/get-user.mjs
components/jira/actions/get-users/get-users.mjs
components/jira/actions/list-issue-comments/list-issue-comments.mjs
components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs
components/jira/actions/transition-issue/transition-issue.mjs
components/jira/actions/update-comment/update-comment.mjs
components/jira/actions/update-issue/update-issue.mjs
components/jira/sources/events/events.mjs
components/jira/sources/issue-created/issue-created.mjs
components/jira/sources/issue-deleted/issue-deleted.mjs
components/jira/sources/issue-updated/issue-updated.mjs
components/jira/package.json
Incremented version numbers in metadata or exported objects; no logic or functional changes.
components/jira/actions/common/issue.mjs Refactored dynamic field option fetching: introduced autocomplete handling, improved array/allowedValues logic, refined error handling.
components/jira/common/constants.mjs Added AUTOCOMPLETE_KEY constant for autocomplete option extraction; extended FIELD_KEY with ISSUELINKS.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant IssueAction as Jira Action (e.g., Create/Update Issue)
    participant IssueModule as common/issue.mjs
    participant JiraAPI

    User->>IssueAction: Initiate action (e.g., create issue)
    IssueAction->>IssueModule: getDynamicFields()
    alt Field requires resource request
        IssueModule->>JiraAPI: Fetch options via resource URL
        JiraAPI-->>IssueModule: Return options
    else Field requires autocomplete
        IssueModule->>JiraAPI: Fetch options via autoCompleteUrl
        JiraAPI-->>IssueModule: Return autocomplete options
        IssueModule->>IssueModule: Map options via AUTOCOMPLETE_KEY
    else Field has allowedValues
        IssueModule->>IssueModule: Map allowedValues to options
    end
    IssueModule-->>IssueAction: Return dynamic fields/options
    IssueAction-->>User: Present dynamic field options
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Poem

A hop and a skip, a version hop spree,
Numbers are climbing as high as can be!
But deep in the fields where the options reside,
Autocomplete magic now hops by your side.
With constants and logic all shiny and new,
This bunny reviews and then bids you adieu!
🐇✨

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs

Oops! Something went wrong! :(

ESLint: 8.57.1

Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'jsonc-eslint-parser' imported from /eslint.config.mjs
at Object.getPackageJSONURL (node:internal/modules/package_json_reader:255:9)
at packageResolve (node:internal/modules/esm/resolve:767:81)
at moduleResolve (node:internal/modules/esm/resolve:853:18)
at defaultResolve (node:internal/modules/esm/resolve:983:11)
at ModuleLoader.defaultResolve (node:internal/modules/esm/loader:801:12)
at #cachedDefaultResolve (node:internal/modules/esm/loader:725:25)
at ModuleLoader.resolve (node:internal/modules/esm/loader:708:38)
at ModuleLoader.getModuleJobForImport (node:internal/modules/esm/loader:309:38)
at #link (node:internal/modules/esm/module_job:202:49)

components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs

Oops! Something went wrong! :(

ESLint: 8.57.1

Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'jsonc-eslint-parser' imported from /eslint.config.mjs
at Object.getPackageJSONURL (node:internal/modules/package_json_reader:255:9)
at packageResolve (node:internal/modules/esm/resolve:767:81)
at moduleResolve (node:internal/modules/esm/resolve:853:18)
at defaultResolve (node:internal/modules/esm/resolve:983:11)
at ModuleLoader.defaultResolve (node:internal/modules/esm/loader:801:12)
at #cachedDefaultResolve (node:internal/modules/esm/loader:725:25)
at ModuleLoader.resolve (node:internal/modules/esm/loader:708:38)
at ModuleLoader.getModuleJobForImport (node:internal/modules/esm/loader:309:38)
at #link (node:internal/modules/esm/module_job:202:49)

components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs

Oops! Something went wrong! :(

ESLint: 8.57.1

Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'jsonc-eslint-parser' imported from /eslint.config.mjs
at Object.getPackageJSONURL (node:internal/modules/package_json_reader:255:9)
at packageResolve (node:internal/modules/esm/resolve:767:81)
at moduleResolve (node:internal/modules/esm/resolve:853:18)
at defaultResolve (node:internal/modules/esm/resolve:983:11)
at ModuleLoader.defaultResolve (node:internal/modules/esm/loader:801:12)
at #cachedDefaultResolve (node:internal/modules/esm/loader:725:25)
at ModuleLoader.resolve (node:internal/modules/esm/loader:708:38)
at ModuleLoader.getModuleJobForImport (node:internal/modules/esm/loader:309:38)
at #link (node:internal/modules/esm/module_job:202:49)

  • 23 others

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix-jira-org-field-is-not-applied

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@jcortes jcortes force-pushed the fix-jira-org-field-is-not-applied branch from f03737d to 2ef9043 Compare July 24, 2025 22:31
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (1)
components/jira/actions/get-user/get-user.mjs (1)

7-7: Same observation as previous file
Only the version field changed. Assuming changelog coverage is handled globally.

🧹 Nitpick comments (1)
components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs (1)

60-68: Silent JSON.parse failure can mask user errors
properties is parsed in a try / catch that silently swallows malformed JSON (//pass). If the input is invalid, the call silently proceeds with properties = undefined, leaving users unaware their payload was ignored.

-    try {
-      properties = JSON.parse(this.properties);
-    } catch ( err ) {
-      //pass
-    }
+    try {
+      properties = JSON.parse(this.properties);
+    } catch (err) {
+      throw new Error("`properties` must be valid JSON: " + err.message);
+    }

Surfacing the error early improves DX and prevents downstream surprises.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between cd0d7f7 and 2ef9043.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (27)
  • components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs (1 hunks)
  • components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs (1 hunks)
  • components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs (1 hunks)
  • components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs (1 hunks)
  • components/jira/actions/assign-issue/assign-issue.mjs (1 hunks)
  • components/jira/actions/common/issue.mjs (2 hunks)
  • components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs (1 hunks)
  • components/jira/actions/create-issue/create-issue.mjs (1 hunks)
  • components/jira/actions/create-version/create-version.mjs (1 hunks)
  • components/jira/actions/delete-project/delete-project.mjs (1 hunks)
  • components/jira/actions/get-all-projects/get-all-projects.mjs (1 hunks)
  • components/jira/actions/get-issue/get-issue.mjs (1 hunks)
  • components/jira/actions/get-task/get-task.mjs (1 hunks)
  • components/jira/actions/get-transitions/get-transitions.mjs (1 hunks)
  • components/jira/actions/get-user/get-user.mjs (1 hunks)
  • components/jira/actions/get-users/get-users.mjs (1 hunks)
  • components/jira/actions/list-issue-comments/list-issue-comments.mjs (1 hunks)
  • components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs (1 hunks)
  • components/jira/actions/transition-issue/transition-issue.mjs (1 hunks)
  • components/jira/actions/update-comment/update-comment.mjs (1 hunks)
  • components/jira/actions/update-issue/update-issue.mjs (1 hunks)
  • components/jira/common/constants.mjs (2 hunks)
  • components/jira/package.json (1 hunks)
  • components/jira/sources/events/events.mjs (1 hunks)
  • components/jira/sources/issue-created/issue-created.mjs (1 hunks)
  • components/jira/sources/issue-deleted/issue-deleted.mjs (1 hunks)
  • components/jira/sources/issue-updated/issue-updated.mjs (1 hunks)
🧰 Additional context used
🧠 Learnings (6)
components/jira/package.json (1)

Learnt from: jcortes
PR: #14935
File: components/sailpoint/package.json:15-18
Timestamp: 2024-12-12T19:23:09.039Z
Learning: When developing Pipedream components, do not add built-in Node.js modules like fs to package.json dependencies, as they are native modules provided by the Node.js runtime.

components/jira/sources/issue-deleted/issue-deleted.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/jira/sources/events/events.mjs (4)

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-07-24T02:06:47.016Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-10-08T15:33:38.240Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

components/jira/sources/issue-created/issue-created.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/jira/actions/create-issue/create-issue.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/jira/sources/issue-updated/issue-updated.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: Lint Code Base
  • GitHub Check: Publish TypeScript components
  • GitHub Check: Verify TypeScript components
🔇 Additional comments (30)
components/jira/package.json (1)

3-3: Version bump aligns with coordinated release

Patch-level increment matches the internal component bumps, so no concerns here.

components/jira/sources/issue-created/issue-created.mjs (1)

7-7: Source version increment looks correct

Consistent patch bump; nothing else changed.

components/jira/actions/create-version/create-version.mjs (1)

7-7: Action version increment acknowledged

Version 0.1.11 keeps parity with sibling actions.

components/jira/actions/list-issue-comments/list-issue-comments.mjs (1)

7-7: Version bump noted

No functional alterations detected—good to merge.

components/jira/actions/get-task/get-task.mjs (1)

7-7: Patch release tag verified

Version change only; implementation untouched.

components/jira/actions/get-all-projects/get-all-projects.mjs (1)

7-7: LGTM! Version increment aligns with coordinated release.

The version bump from "0.1.11" to "0.1.12" is consistent with the coordinated release pattern across multiple Jira components in this PR.

components/jira/actions/get-transitions/get-transitions.mjs (1)

7-7: LGTM! Version increment follows coordinated release pattern.

The version bump from "0.1.10" to "0.1.11" is consistent with the systematic version updates across Jira components in this release.

components/jira/common/constants.mjs (3)

20-21: LGTM! ISSUELINKS field key addition is consistent.

The new ISSUELINKS: "issuelinks" entry follows the established pattern in the FIELD_KEY constant and supports the enhanced dynamic field functionality.


23-44: LGTM! AUTOCOMPLETE_KEY provides well-structured option extraction logic.

The new AUTOCOMPLETE_KEY constant provides clean, structured logic for processing autocomplete responses:

  • assignee mapping correctly extracts displayName as label and accountId as value
  • issuelinks logic properly flattens the nested sections.issues structure to extract summary and key

The implementation follows functional programming patterns and provides the foundation for improved dynamic field handling.


69-69: LGTM! AUTOCOMPLETE_KEY properly exported.

The new constant is correctly added to the default export, making it available for use in other modules like the issue.mjs dynamic field logic.

components/jira/actions/create-custom-field-options-context/create-custom-field-options-context.mjs (1)

8-8: LGTM! Version increment aligns with coordinated release.

The version bump from "0.0.2" to "0.0.3" is consistent with the systematic version updates across Jira action components in this PR.

components/jira/sources/issue-deleted/issue-deleted.mjs (1)

7-7: LGTM! Version increment follows coordinated release pattern.

The version bump from "0.0.11" to "0.0.12" is consistent with the systematic version updates across Jira source components in this release.

components/jira/actions/delete-project/delete-project.mjs (1)

7-7: Version bump looks good.

This coordinated version increment aligns with the broader update across Jira components in this PR.

components/jira/actions/common/issue.mjs (3)

126-129: Good separation of concerns for different request types.

The introduction of keysForAutoCompleteRequest provides clear distinction between fields that need autocomplete URL requests versus resource requests.


155-168: Excellent addition for handling allowed values.

This new handling for array schema types with allowedValues directly addresses cases where fields have predefined options, which could be related to the Organizations field issue mentioned in the PR.


171-192: Improved error handling and autocomplete logic.

The refactored autocomplete URL handling with better error handling ensures that field processing continues even if individual autocomplete requests fail. The use of AUTOCOMPLETE_KEY[key].getOptions(response) provides field-specific option extraction logic.

components/jira/actions/assign-issue/assign-issue.mjs (1)

6-6: Version bump aligns with coordinated update.

The version increment is consistent with the broader Jira components update in this PR.

components/jira/actions/add-multiple-attachments-to-issue/add-multiple-attachments-to-issue.mjs (1)

9-9: Appropriate patch version increment.

The version bump from 1.0.2 to 1.0.3 follows semantic versioning conventions for patch releases.

components/jira/sources/events/events.mjs (1)

8-8: Source component version bump completed.

This completes the coordinated version update across the Jira components suite.

components/jira/actions/get-users/get-users.mjs (1)

7-7: Version bump looks good – patch increment to 0.0.6 is consistent with the coordinated release across Jira components and introduces no behavioural change.

components/jira/actions/add-watcher-to-issue/add-watcher-to-issue.mjs (1)

6-6: Patch version increment confirmed – moving to 0.0.10 keeps semantic-versioning continuity; nothing else modified.

components/jira/actions/get-issue/get-issue.mjs (1)

7-7: Patch version bump verified0.1.13 aligns with the rest of the bundle; no logic affected.

components/jira/sources/issue-updated/issue-updated.mjs (1)

7-7: Source version updated0.0.12 matches the other Jira sources; change is metadata-only.

components/jira/actions/search-issues-with-jql/search-issues-with-jql.mjs (1)

7-7: Minor patch release accepted0.0.3 increment is appropriate; implementation untouched.

components/jira/actions/update-comment/update-comment.mjs (1)

8-8: Version bump looks good — ensure accompanying changelog entry
Patch-level increment is appropriate given no functional changes. Please confirm a corresponding note exists in the package-level CHANGELOG to keep release history transparent.

components/jira/actions/create-issue/create-issue.mjs (1)

10-10: Patch version bump acknowledged
No issues spotted. Verify that any automation relying on the action’s version (e.g., docs site or marketplace publishing) is triggered.

components/jira/actions/add-attachment-to-issue/add-attachment-to-issue.mjs (1)

9-9: Consistent version increment
Looks fine. Remember to regenerate the component index if your build requires it.

components/jira/actions/transition-issue/transition-issue.mjs (1)

8-8: Version metadata updated
No functional diff detected. Good to merge once global release notes are updated.

components/jira/actions/add-comment-to-issue/add-comment-to-issue.mjs (1)

8-8: Version bump looks good—confirm repository-wide consistency
Patch-level increment from 0.1.100.1.11 follows SemVer and matches the pattern in the PR. Just make sure:

  1. components/jira/package.json and any changelog entries reflect the same new version.
  2. No other files still reference 0.1.10.

If those checks pass, nothing else to do here.

components/jira/actions/update-issue/update-issue.mjs (1)

11-11: Version increment acknowledged—no further issues
The bump from 0.2.140.2.15 is correct and aligns with the coordinated updates across Jira actions. Ensure accompanying docs/changelog entries are updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[ACTIONS] JIRA - Create Task - the Organizations field is not applying
1 participant