Skip to content

Conversation

@MishaKav
Copy link
Collaborator

@MishaKav MishaKav commented Jul 23, 2025

✨ PR Description

Purpose: Refactor release notes generation in GitHub Actions workflow to use printf instead of heredoc for safer handling of special characters.
Main changes:

  • Replaced heredoc-based release notes creation with printf command to properly escape special characters
  • Eliminated intermediary variables for PR title, release notes, and PR number
  • Added explanatory comment about the change's purpose

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 requested review from Copilot and yeelali14 July 23, 2025 09:26
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR refactors the release notes creation process in the GitHub Actions workflow to use printf instead of heredoc syntax for safer handling of special characters that might be present in PR titles and descriptions.

  • Replaces heredoc (cat > file << EOF) with printf for generating release notes
  • Eliminates intermediate shell variables that could cause issues with special characters
  • Maintains the same release notes format while improving robustness

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

Copy link
Collaborator

@yeelali14 yeelali14 left a comment

Choose a reason for hiding this comment

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

LGTM

@gitstream-cm
Copy link
Contributor

gitstream-cm bot commented Jul 23, 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.

@MishaKav MishaKav merged commit 2176d18 into develop Jul 23, 2025
12 of 13 checks passed
@MishaKav MishaKav deleted the LINBEE-18177-fix-auto-deploy-after-github-sso-2 branch July 23, 2025 09:28
@MishaKav MishaKav added the auto-deploy when exists in PR, will auto make release and auto deploy to prod label Jul 23, 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 refactoring aims to improve handling of special characters by switching from heredoc to printf, but introduces a potential security vulnerability through improper shell argument handling.

1 issues detected:

🔒 Security - Unescaped user-controlled input is passed directly to shell commands, creating potential for command injection or syntax errors.

Details: The printf command uses GitHub Actions variables directly as arguments without proper shell escaping. If PR titles or release notes contain special characters, quotes, backticks, or shell metacharacters, they could break the command syntax or potentially execute unintended code.
File: .github/workflows/create-tag-on-merge.yml (83-88)

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

Comment on lines +83 to +88
# Create release notes using printf to handle special characters safely
printf "## What's Changed\n\n%s in [#%s](https://github.com/${{ github.repository }}/pull/%s)\n\n%s\n" \
"${{ steps.should-deploy.outputs.pr-title }}" \
"${{ steps.should-deploy.outputs.pr-number }}" \
"${{ steps.should-deploy.outputs.pr-number }}" \
"${{ steps.should-deploy.outputs.release-notes }}" > release_notes.md
Copy link
Contributor

Choose a reason for hiding this comment

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

🔒 Security - Shell Injection Risk: Either revert to the previous shell variable approach with proper quoting, or use printf with properly escaped arguments. Consider using shell parameter expansion with proper quoting like "${PR_TITLE@Q}" or a more robust templating approach.

Suggested change
# Create release notes using printf to handle special characters safely
printf "## What's Changed\n\n%s in [#%s](https://github.com/${{ github.repository }}/pull/%s)\n\n%s\n" \
"${{ steps.should-deploy.outputs.pr-title }}" \
"${{ steps.should-deploy.outputs.pr-number }}" \
"${{ steps.should-deploy.outputs.pr-number }}" \
"${{ steps.should-deploy.outputs.release-notes }}" > release_notes.md
# Create release notes using shell variables with proper quoting
PR_TITLE="${{ steps.should-deploy.outputs.pr-title }}"
PR_NUMBER="${{ steps.should-deploy.outputs.pr-number }}"
RELEASE_NOTES="${{ steps.should-deploy.outputs.release-notes }}"
printf "## What's Changed\n\n%s in [#%s](https://github.com/${{ github.repository }}/pull/%s)\n\n%s\n" \
"$PR_TITLE" \
"$PR_NUMBER" \
"$PR_NUMBER" \
"$RELEASE_NOTES" > release_notes.md

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

Labels

1 min review auto-deploy when exists in PR, will auto make release and auto deploy to prod

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants