Skip to content

Conversation

@MishaKav
Copy link
Collaborator

@MishaKav MishaKav commented Jul 20, 2025

✨ PR Description

Purpose: Enhance GitHub tag creation workflow to include customized release notes from PR content and update v2-lite tag.

Main changes:

  • Added extraction logic to parse release notes from PR descriptions
  • Replaced auto-generated release notes with custom notes from PR content
  • Added new step to update v2-lite tag with latest package files

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

Copy link

@orca-security-us orca-security-us bot left a comment

Choose a reason for hiding this comment

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

Orca Security Scan Summary

Status Check Issues by priority
Passed Passed Infrastructure as Code high 0   medium 0   low 0   info 0 View in Orca
Passed Passed SAST high 0   medium 0   low 0   info 0 View in Orca
Passed Passed Secrets high 0   medium 0   low 0   info 0 View in Orca
Passed Passed Vulnerabilities high 0   medium 0   low 0   info 0 View in Orca

@gitstream-cm
Copy link
Contributor

gitstream-cm bot commented Jul 20, 2025

Please mark which AI tools you used for this PR by checking the appropriate boxes:

  • GitHub Copilot
  • Cursor
  • ChatGPT
  • Tabnine
  • JetBrains AI Assistant
  • VSCode IntelliCode
  • Claude
  • Gemini
  • Other AI tool
  • No AI tools were used

Tip: If you want to avoid this comment in the future, you can add a label of the format 🤖 ai-* when creating your PR.

Copy link
Contributor

@gitstream-cm gitstream-cm bot left a comment

Choose a reason for hiding this comment

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

✨ PR Review

The PR modifies the GitHub workflow to extract release notes from PR descriptions and create releases, but introduces a critical issue with an undefined variable.

2 issues detected:

🐞 Bug - Using undefined environment variable $NEW_TAG will cause workflow execution failure

Details: The workflow uses the undefined variable $NEW_TAG in the release creation and git checkout commands. The tag creation step that likely defined this variable has been commented out, causing the workflow to fail.
File: .github/workflows/create-tag-on-merge.yml (68-68)

🐞 Bug - Overly permissive regex pattern may extract unintended content from PR descriptions

Details: The regex pattern for extracting the Purpose section uses a non-greedy quantifier with the 's' modifier, which might match more content than intended including newlines and potentially capturing content beyond the Purpose section.
File: .github/workflows/create-tag-on-merge.yml (47-47)

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

MishaKav and others added 3 commits July 20, 2025 08:31
Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com>
…com:linear-b/gitstream-github-action into LINBEE-18079-gitstream-action-release-notes
Copy link
Contributor

@gitstream-cm gitstream-cm bot left a comment

Choose a reason for hiding this comment

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

✨ PR Review

The PR enhances the release workflow by extracting release notes from PR descriptions, but introduces a potential security vulnerability and regex matching issue.

2 issues detected:

🔒 Security - Unescaped user input in shell commands can lead to command injection attacks.

Details: The PR title and release notes are directly interpolated into a shell heredoc without proper escaping. If a PR title or description contains special shell characters (like backticks, dollar signs, or semicolons), it could lead to command injection vulnerabilities in the GitHub Actions environment.
File: .github/workflows/create-tag-on-merge.yml (73-79)

🐞 Bug - The regex could match "Purpose:" in unexpected locations within the PR description.

Details: The regex pattern for extracting the Purpose section is not anchored to the beginning of a line, which means it could match "Purpose:" anywhere in the PR description text, potentially capturing unintended content if the word "Purpose:" appears mid-sentence or in other contexts.
File: .github/workflows/create-tag-on-merge.yml (48-48)

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

Copy link
Contributor

@gitstream-cm gitstream-cm bot left a comment

Choose a reason for hiding this comment

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

✨ PR Review

The PR continues to develop the release notes extraction feature but introduces a significant workflow logic issue by commenting out the deployment condition, potentially causing unintended deployments.

1 issues detected:

🐞 Bug - The deployment guard condition is disabled, allowing uncontrolled deployments on every merge.

Details: The deployment step condition is commented out, which means the deployment will execute for every merge regardless of whether the PR has the required 'auto-deploy' label. This bypasses the intended deployment control mechanism.
File: .github/workflows/create-tag-on-merge.yml (64-64)

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

Copy link
Contributor

@gitstream-cm gitstream-cm bot left a comment

Choose a reason for hiding this comment

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

✨ PR Review

The PR continues to develop release notes extraction functionality but introduces potential runtime errors and maintains a partially implemented state that could confuse future developers.

2 issues detected:

🐞 Bug - Accessing array indices without bounds checking can cause runtime errors when the expected pattern doesn't match.

Details: The code accesses contentMatch[1] without verifying that the regex match actually captured a group at index 1. If the regex pattern doesn't match as expected or doesn't contain the expected capture group, this will cause a runtime error.
File: .github/workflows/create-tag-on-merge.yml (50-50)

🧹 Maintainability - The regex pattern is tightly coupled to a specific template format making it fragile to changes.

Details: The regex pattern for extracting release notes is extremely specific to the current gitstream placeholder format. Any minor changes to the gitstream template structure will cause silent failures in release note extraction.
File: .github/workflows/create-tag-on-merge.yml (44-51)

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

@MishaKav MishaKav changed the title Linbee 18079 gitstream action release notes Linbee 18079 gitstream action release notes [skip ci] Jul 20, 2025
Copy link
Contributor

@gitstream-cm gitstream-cm bot left a comment

Choose a reason for hiding this comment

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

✨ PR Review

The PR continues developing the release notes extraction feature and adds a new v2-lite branch update mechanism, but introduces critical runtime errors due to undefined variables and lacks proper error handling for git operations.

3 issues detected:

🐞 Bug - The workflow references an undefined environment variable that will cause execution failure.

Details: The new v2-lite update step uses the undefined variable $NEW_TAG in git operations, which will cause the workflow to fail at runtime. This variable is referenced but never defined in the workflow.
File: .github/workflows/create-tag-on-merge.yml (80-80)

🐞 Bug - Git operations can fail silently or cause workflow failures without proper error handling and validation.

Details: The v2-lite update step performs multiple git operations without proper error handling. Operations like git checkout, git commit, and git push can fail for various reasons (branch doesn't exist, no changes to commit, push conflicts), but the workflow doesn't handle these failure scenarios gracefully.
File: .github/workflows/create-tag-on-merge.yml (90-94)

🐞 Bug - The workflow assumes file existence without validation, which can cause runtime failures.

Details: The workflow assumes that package.json, package-lock.json, and dist/ directory exist at the specified tag without validation. If these files don't exist at the target tag, the git checkout command will fail.
File: .github/workflows/create-tag-on-merge.yml (91-91)

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

Copy link
Contributor

@gitstream-cm gitstream-cm bot left a comment

Choose a reason for hiding this comment

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

✨ PR Review

The PR enhances release notes extraction with multiple fallback patterns and improves release creation, but still contains critical undefined variable usage and unsafe shell input handling that will cause workflow failures.

3 issues detected:

🐞 Bug - Using undefined environment variables causes workflow execution to fail with variable expansion errors.

Details: The workflow continues to use the undefined variable $NEW_TAG in multiple git operations and release creation commands. This will cause immediate workflow execution failure as the variable is never defined or set in the workflow.
File: .github/workflows/create-tag-on-merge.yml (95-95)

🐞 Bug - Accessing array indices without bounds checking causes runtime errors when regex patterns don't match as expected.

Details: The regex matching logic accesses array indices without verifying that the match actually contains the expected capture groups. Multiple patterns access match[1] without checking if the match exists or has sufficient captured groups, which will cause runtime errors when patterns don't match as expected.
File: .github/workflows/create-tag-on-merge.yml (88-93)

🔒 Security - Unescaped user input in shell commands creates potential command injection attack vectors.

Details: PR title and release notes are directly interpolated into shell heredoc without proper escaping. If PR content contains shell metacharacters (backticks, dollar signs, semicolons), it could lead to command injection vulnerabilities in the GitHub Actions environment.
File: .github/workflows/create-tag-on-merge.yml

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We'd love your feedback! 🚀

@MishaKav MishaKav merged commit cac55c9 into develop Jul 22, 2025
15 checks passed
@MishaKav MishaKav deleted the LINBEE-18079-gitstream-action-release-notes branch July 22, 2025 07:43
MishaKav added a commit that referenced this pull request Jul 28, 2025
* bump  to (#173)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#176)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#178)

Save output to files on error

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#179)

Ensure callback returns are consistent

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#180)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group across 1 directory with 6 updates (#181)

* Bump the npm-development group across 1 directory with 6 updates

Bumps the npm-development group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.13` | `29.5.14` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.5` | `22.9.0` |
| [@vercel/ncc](https://github.com/vercel/ncc) | `0.38.1` | `0.38.2` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.8.3` | `28.9.0` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.16.0` | `2.18.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |



Updates `@types/jest` from 29.5.13 to 29.5.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Updates `@types/node` from 22.5.5 to 22.9.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vercel/ncc` from 0.38.1 to 0.38.2
- [Release notes](https://github.com/vercel/ncc/releases)
- [Commits](vercel/ncc@0.38.1...0.38.2)

Updates `eslint-plugin-jest` from 28.8.3 to 28.9.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.8.3...v28.9.0)

Updates `eslint-plugin-jsonc` from 2.16.0 to 2.18.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.16.0...v2.18.1)

Updates `typescript` from 5.6.2 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.6.3)

---
updated-dependencies:
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: "@vercel/ncc"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-jsonc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump dependencies in package.json for @actions/core, @typescript-eslint/eslint-plugin, and eslint

* Ignore updates for eslint and @typescript-eslint packages in dependabot configuration

* Update eslint-plugin-github to version 5.0.2 and add it to ESLint configuration

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#182)

Improved yaml validations

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#185)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#187)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#190)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#194)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#196)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#198)

- add custom filters to validators
- add `readFile` function to cm files

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#199)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#200)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#201)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#203)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#205)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#207)

remove async filter calls when automation is not passed

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#208)

- add memoization to internal async calls

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#210)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#214)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump `@linearb/gitstream-core` to `2.1.88` (#215)

* bump dev dependencies in package.json

---------

Co-authored-by: Misha Kav <misha.kav@gmail.com>
Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump @types/node from 22.10.2 to 22.10.5 in the npm-development group (#216)

Bumps the npm-development group with 1 update: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `@types/node` from 22.10.2 to 22.10.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#218)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 3 updates (#222)

Bumps the npm-development group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [eslint-plugin-github](https://github.com/github/eslint-plugin-github) and [typescript](https://github.com/microsoft/TypeScript).


Updates `@types/node` from 22.10.5 to 22.10.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-github` from 5.1.4 to 5.1.5
- [Release notes](https://github.com/github/eslint-plugin-github/releases)
- [Commits](github/eslint-plugin-github@v5.1.4...v5.1.5)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-github
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#223)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#224)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 3 updates (#225)

* bump  to (#227)

added new premium feature of `AI_DescribePR` (available only for paid users)
Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#228)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump undici from 5.28.4 to 5.28.5 (#226)

* Bump undici from 5.28.4 to 5.28.5

Bumps [undici](https://github.com/nodejs/undici) from 5.28.4 to 5.28.5.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v5.28.4...v5.28.5)

---
updated-dependencies:
- dependency-name: undici
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* empty commit

* rebuild after package update

* bump @types/node to version 22.10.9

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#229)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 2 updates (#230)

Bumps the npm-development group with 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc).


Updates `@types/node` from 22.10.9 to 22.10.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-jsonc` from 2.18.2 to 2.19.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.18.2...v2.19.1)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-jsonc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#231)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#232)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 2 updates (#233)

* Bump the npm-development group with 2 updates

Bumps the npm-development group with 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [eslint-plugin-github](https://github.com/github/eslint-plugin-github).


Updates `@types/node` from 22.10.10 to 22.13.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-github` from 5.1.5 to 5.1.7
- [Release notes](https://github.com/github/eslint-plugin-github/releases)
- [Commits](github/eslint-plugin-github@v5.1.5...v5.1.7)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-github
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update binary files in dist directory

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#234)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 3 updates (#235)

Bumps the npm-development group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [eslint-plugin-github](https://github.com/github/eslint-plugin-github) and [prettier](https://github.com/prettier/prettier).


Updates `@types/node` from 22.13.0 to 22.13.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-github` from 5.1.7 to 5.1.8
- [Release notes](https://github.com/github/eslint-plugin-github/releases)
- [Commits](github/eslint-plugin-github@v5.1.7...v5.1.8)

Updates `prettier` from 3.4.2 to 3.5.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.2...3.5.0)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-github
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#239)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 2 updates (#242)

Bumps the npm-development group with 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [prettier](https://github.com/prettier/prettier).


Updates `@types/node` from 22.13.1 to 22.13.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `prettier` from 3.5.0 to 3.5.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.0...3.5.1)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @octokit/endpoint from 9.0.5 to 9.0.6 (#240)

* Bump @octokit/endpoint from 9.0.5 to 9.0.6

Bumps [@octokit/endpoint](https://github.com/octokit/endpoint.js) from 9.0.5 to 9.0.6.
- [Release notes](https://github.com/octokit/endpoint.js/releases)
- [Commits](octokit/endpoint.js@v9.0.5...v9.0.6)

---
updated-dependencies:
- dependency-name: "@octokit/endpoint"
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update dist/index.js with new binary changes

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* Bump @octokit/request-error from 5.1.0 to 5.1.1 (#238)

* Bump @octokit/request-error from 5.1.0 to 5.1.1

Bumps [@octokit/request-error](https://github.com/octokit/request-error.js) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/octokit/request-error.js/releases)
- [Commits](octokit/request-error.js@v5.1.0...v5.1.1)

---
updated-dependencies:
- dependency-name: "@octokit/request-error"
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update binary file dist/index.js

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#244)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#247)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#248)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump @octokit/request from 8.4.0 to 8.4.1 (#245)

* Bump @octokit/request from 8.4.0 to 8.4.1

Bumps [@octokit/request](https://github.com/octokit/request.js) from 8.4.0 to 8.4.1.
- [Release notes](https://github.com/octokit/request.js/releases)
- [Commits](octokit/request.js@v8.4.0...v8.4.1)

---
updated-dependencies:
- dependency-name: "@octokit/request"
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update dist/index.js with new binary changes

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#250)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#252)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#254)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#255)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#258)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#259)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* LINBEE-14851 - Add checkout step for CM organization in action.yml (#260)

* Add checkout step for cm organization in action.yml

* Refactor checkout conditions in action.yml and update variable handling in get-condition-vars.js

* lint

* Update path for cm organization in action.yml

---------

Co-authored-by: Yeela Lifshitz <yeelalifshitz@Yeela-MacBook-Pro.local>

* bump  to (#262)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#263)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#264)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#266)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#267)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#269)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#272)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#275)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#277)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#278)

* bump  to (#279)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#281)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#282)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group across 1 directory with 7 updates (#280)

* Bump the npm-development group across 1 directory with 7 updates

Bumps the npm-development group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.4` | `22.14.1` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.19.1` | `2.20.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.3` | `5.2.6` |
| [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.3` |
| [prettier-eslint](https://github.com/prettier/prettier-eslint) | `16.3.0` | `16.3.2` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.2.5` | `29.3.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.3` |



Updates `@types/node` from 22.13.4 to 22.14.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-jsonc` from 2.19.1 to 2.20.0
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.19.1...v2.20.0)

Updates `eslint-plugin-prettier` from 5.2.3 to 5.2.6
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.3...v5.2.6)

Updates `prettier` from 3.5.1 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.1...3.5.3)

Updates `prettier-eslint` from 16.3.0 to 16.3.2
- [Release notes](https://github.com/prettier/prettier-eslint/releases)
- [Changelog](https://github.com/prettier/prettier-eslint/blob/master/CHANGELOG.md)
- [Commits](prettier/prettier-eslint@v16.3.0...v16.3.2)

Updates `ts-jest` from 29.2.5 to 29.3.2
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.2.5...v29.3.2)

Updates `typescript` from 5.7.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-jsonc
  dependency-version: 2.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: prettier-eslint
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: ts-jest
  dependency-version: 29.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update dependencies in package-lock.json to latest versions

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#283)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Add create-tag and update-v2-tag scripts; enhance GitHub workflows for versioning and auto-deploy [skip ci] (#285)

* bump  to (#284)

develop

Co-authored-by: GitHub Actions Bot <actions@github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* Update ticket description format and simplify PR description handling in bump-gitstream-core workflow (#286)

* bump  to (#288)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group across 1 directory with 2 updates (#290)

Bumps the npm-development group with 2 updates in the / directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier).


Updates `@types/node` from 22.14.1 to 22.15.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-prettier` from 5.2.6 to 5.4.0
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.6...v5.4.0)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the npm-development group with 2 updates (#292)

Bumps the npm-development group with 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [prettier-eslint](https://github.com/prettier/prettier-eslint).


Updates `@types/node` from 22.15.5 to 22.15.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `prettier-eslint` from 16.4.1 to 16.4.2
- [Release notes](https://github.com/prettier/prettier-eslint/releases)
- [Changelog](https://github.com/prettier/prettier-eslint/blob/master/CHANGELOG.md)
- [Commits](prettier/prettier-eslint@v16.4.1...v16.4.2)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: prettier-eslint
  dependency-version: 16.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#291)

Co-authored-by: GitHub Actions Bot <actions@github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* Update dependabot schedule to weekly and remove changelog file [skip ci] (#294)

* Update dependabot schedule to weekly and remove changelog file

* Update binary file dist/index.js

* Bump the npm-development group with 3 updates (#295)

* Bump the npm-development group with 3 updates

Bumps the npm-development group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) and [ts-jest](https://github.com/kulshekhar/ts-jest).


Updates `@types/node` from 22.15.17 to 22.15.18
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-jsonc` from 2.20.0 to 2.20.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.20.0...v2.20.1)

Updates `ts-jest` from 29.3.2 to 29.3.4
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.3.2...v29.3.4)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-jsonc
  dependency-version: 2.20.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: ts-jest
  dependency-version: 29.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update binary file dist/index.js

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* Bump @types/node from 22.15.18 to 22.15.19 in the npm-development group (#296)

Bumps the npm-development group with 1 update: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `@types/node` from 22.15.18 to 22.15.19
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#297)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#298)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#299)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump @types/node from 22.15.19 to 22.15.21 in the npm-development group (#300)

Bumps the npm-development group with 1 update: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `@types/node` from 22.15.19 to 22.15.21
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#301)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#304)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#305)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#306)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump the npm-development group with 3 updates (#302)

Bumps the npm-development group with 3 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) and [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier).


Updates `@types/node` from 22.15.21 to 22.15.29
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-jest` from 28.11.0 to 28.12.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.11.0...v28.12.0)

Updates `eslint-plugin-prettier` from 5.4.0 to 5.4.1
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.4.0...v5.4.1)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.29
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: eslint-plugin-jest
  dependency-version: 28.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#307)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#308)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#309)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#311)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#316)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#318)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Linbee 17477 gitstream failing due to an error with multiple remote branches (#321)

* fix: update checkout command to use upstream reference for head branch

* fix: correct checkout command to use proper syntax for upstream reference

* fix: streamline checkout process by removing redundant commands

* fix: update checkout commands to correctly reference base and head branches

* fix: remove redundant checkout commands for base and head branches

* fix: enhance checkout process by configuring default remote and ensuring proper branch checkouts

* Bump the npm-development group across 1 directory with 3 updates (#317)

Bumps the npm-development group with 3 updates in the / directory: [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier), [prettier](https://github.com/prettier/prettier) and [ts-jest](https://github.com/kulshekhar/ts-jest).


Updates `eslint-plugin-prettier` from 5.4.1 to 5.5.0
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.4.1...v5.5.0)

Updates `prettier` from 3.5.3 to 3.6.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.3...3.6.0)

Updates `ts-jest` from 29.3.4 to 29.4.0
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.3.4...v29.4.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: prettier
  dependency-version: 3.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: ts-jest
  dependency-version: 29.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @types/node from 22.15.30 to 24.0.7 (#326)

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.15.30 to 24.0.7.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.0.7
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#327)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#328)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#331)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#332)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#334)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#335)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#337)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#339)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#340)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#341)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#342)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Bump @types/node from 24.0.7 to 24.0.13 in the npm-development group (#345)

Bumps the npm-development group with 1 update: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `@types/node` from 24.0.7 to 24.0.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.0.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @jest/globals from 29.7.0 to 30.0.4 (#343)

Bumps [@jest/globals](https://github.com/jestjs/jest/tree/HEAD/packages/jest-globals) from 29.7.0 to 30.0.4.
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.0.4/packages/jest-globals)

---
updated-dependencies:
- dependency-name: "@jest/globals"
  dependency-version: 30.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* Bump jest and @types/jest (#344)

Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest). These dependencies needed to be updated together.

Updates `jest` from 29.7.0 to 30.0.4
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.0.4/packages/jest)

Updates `@types/jest` from 29.5.14 to 30.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

---
updated-dependencies:
- dependency-name: jest
  dependency-version: 30.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: "@types/jest"
  dependency-version: 30.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bump  to (#347)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#348)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#349)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* bump  to (#350)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Linbee 18079 gitstream action release notes [skip ci] (#351)

* Extract purpose from PR description for release notes in GitHub Actions workflow

* Comment out the step to create and push a new tag in the GitHub Actions workflow

* Update .github/workflows/create-tag-on-merge.yml

Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com>

* Fix release notes extraction and update output variable names in GitHub Actions workflow

* Comment out deployment steps in GitHub Actions workflow for debugging

* Refine release notes extraction to include content between gitstream placeholders and update output format

* Uncomment tag creation and release steps in GitHub Actions workflow

* Uncomment condition for auto-deployment in GitHub Actions workflow

* Add step to update v2-lite branch after creating a new tag

* Enhance release notes extraction to prioritize CHANGELOG section and support new format

---------

Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com>

* Bump form-data from 4.0.2 to 4.0.4 [skip ci] (#352)

* Bump form-data from 4.0.2 to 4.0.4

Bumps [form-data](https://github.com/form-data/form-data) from 4.0.2 to 4.0.4.
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.2...v4.0.4)

---
updated-dependencies:
- dependency-name: form-data
  dependency-version: 4.0.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Add reviewer input to bump-gitstream-core workflow and update brace-expansion versions

* Update dist/index.js with new build artifacts

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Misha Kav <misha.kav@gmail.com>

* bump  to (#354)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Refactor release notes creation to use printf for safer handling of special characters (#355)

* Set GitHub Actions Bot user configuration for commits [skip ci] (#356)

* Set GitHub Actions Bot user configuration for commits

* Fix email configuration for GitHub Actions Bot in workflows

* Update GitHub Actions Bot email configuration to use 'actions@github.com'

* bump  to (#358)

Co-authored-by: GitHub Actions Bot <actions@github.com>

* Update licenses.txt to reflect changes in license information [skip ci]

* bump  to (#359)

Co-authored-by: GitHub Actions Bot <actions@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub Actions Bot <actions@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yeela Lifshitz <52451294+yeelali14@users.noreply.github.com>
Co-authored-by: Yeela Lifshitz <yeelalifshitz@Yeela-MacBook-Pro.local>
Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants