Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix globbing in input #7

Merged
merged 1 commit into from
Jun 10, 2022
Merged

Conversation

norman-zon
Copy link

@norman-zon norman-zon commented Jun 9, 2022

If an asterisk is used as part of the input jq command it is expanded by the command substitution. If INPUT_CMD is double-quoted asterisks inside the jq command get passed on.

Initial checklist

  • I read the support docs
  • I read the contributing guide
  • I agree to follow the code of conduct
  • I searched issues and couldn’t find anything (or linked relevant results below)
  • If applicable, I’ve added docs and tests

Description of changes

If an asterisk is used as part of the input jq command it is expanded by the command substitution. If INPUT_CMD is double-quoted asterisks inside the jq command get passed on.

e.g

jq -r '.[] | @text " * | \(.name) | \(.currentMasterVersion)"' data/clusters*.json

gets expanded to

jq -r '.[] | @text " FILE1 FILE2 FILE3 | \(.name) | \(.currentMasterVersion)"' data/clusters1.json data/clusters2.json

instead of

jq -r '.[] | @text " * | \(.name) | \(.currentMasterVersion)"' data/clusters1.json data/clusters2.json

double-quoting fixes this.

If an asterisk is used as part of the input jq command it is expanded by the command substitution. If `INPUT_CMD` is double-quoted asterisks inside the jq command get passed on.
@norman-zon
Copy link
Author

@sergeysova could you have a quick look please? Thanks in advance.

@sergeysova
Copy link
Owner

@norman-zon Thank you ❤️

@sergeysova sergeysova merged commit acfe8e3 into sergeysova:master Jun 10, 2022
@norman-zon
Copy link
Author

@sergeysova could you please tag a release again? Thanks a lot!

jbudz referenced this pull request in elastic/kibana Aug 14, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [sergeysova/jq-action](https://togithub.com/sergeysova/jq-action) |
action | minor | `v2` -> `v2.3.0` |

---

### Release Notes

<details>
<summary>sergeysova/jq-action (sergeysova/jq-action)</summary>

###
[`v2.3.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2.2.1...v2.3.0)

##### What's Changed

- Use $GITHUB_OUTPUT instead of set-output by
[@&#8203;satoryu](https://togithub.com/satoryu) in
[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)

##### New Contributors

- [@&#8203;satoryu](https://togithub.com/satoryu) made their first
contribution in
[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)

**Full Changelog**:
sergeysova/jq-action@v2...v2.3.0

###
[`v2.2.1`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.1)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1)

##### What's Changed

- Fix globbing in input by
[@&#8203;norman-zon](https://togithub.com/norman-zon) in
[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)

##### New Contributors

- [@&#8203;norman-zon](https://togithub.com/norman-zon) made their first
contribution in
[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)

**Full Changelog**:
sergeysova/jq-action@v2.2.0...v2.2.1

###
[`v2.2.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.0)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0)

##### What's Changed

- fix: use correct multiline output by
[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer) in
[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)

##### New Contributors

- [@&#8203;kennethkalmer](https://togithub.com/kennethkalmer) made their
first contribution in
[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)

**Full Changelog**:
sergeysova/jq-action@v2.1.0...v2.2.0

###
[`v2.1.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.1.0)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2...v2.1.0)

Added support for multiline `run`
[https://github.com/sergeysova/jq-action/pull/3](https://togithub.com/sergeysova/jq-action/pull/3)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
kibanamachine referenced this pull request in kibanamachine/kibana Aug 14, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [sergeysova/jq-action](https://togithub.com/sergeysova/jq-action) |
action | minor | `v2` -> `v2.3.0` |

---

### Release Notes

<details>
<summary>sergeysova/jq-action (sergeysova/jq-action)</summary>

###
[`v2.3.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2.2.1...v2.3.0)

##### What's Changed

- Use $GITHUB_OUTPUT instead of set-output by
[@&elastic#8203;satoryu](https://togithub.com/satoryu) in
[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)

##### New Contributors

- [@&elastic#8203;satoryu](https://togithub.com/satoryu) made their first
contribution in
[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)

**Full Changelog**:
sergeysova/jq-action@v2...v2.3.0

###
[`v2.2.1`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.1)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1)

##### What's Changed

- Fix globbing in input by
[@&elastic#8203;norman-zon](https://togithub.com/norman-zon) in
[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)

##### New Contributors

- [@&elastic#8203;norman-zon](https://togithub.com/norman-zon) made their first
contribution in
[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)

**Full Changelog**:
sergeysova/jq-action@v2.2.0...v2.2.1

###
[`v2.2.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.0)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0)

##### What's Changed

- fix: use correct multiline output by
[@&elastic#8203;kennethkalmer](https://togithub.com/kennethkalmer) in
[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)

##### New Contributors

- [@&elastic#8203;kennethkalmer](https://togithub.com/kennethkalmer) made their
first contribution in
[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)

**Full Changelog**:
sergeysova/jq-action@v2.1.0...v2.2.0

###
[`v2.1.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.1.0)

[Compare
Source](https://togithub.com/sergeysova/jq-action/compare/v2...v2.1.0)

Added support for multiline `run`
[https://github.com/sergeysova/jq-action/pull/3](https://togithub.com/sergeysova/jq-action/pull/3)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
(cherry picked from commit ec196ce)
kibanamachine referenced this pull request in elastic/kibana Aug 14, 2024
…190567)

# Backport

This will backport the following commits from `main` to `8.15`:
- [Update sergeysova/jq-action action to v2.3.0 (main)
(#190552)](#190552)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT
[{"author":{"name":"elastic-renovate-prod[bot]","email":"174716857+elastic-renovate-prod[bot]@users.noreply.github.com"},"sourceCommit":{"committedDate":"2024-08-14T22:15:05Z","message":"Update
sergeysova/jq-action action to v2.3.0 (main) (#190552)\n\nThis PR
contains the following updates:\r\n\r\n| Package | Type | Update |
Change |\r\n|---|---|---|---|\r\n|
[sergeysova/jq-action](https://togithub.com/sergeysova/jq-action)
|\r\naction | minor | `v2` -> `v2.3.0` |\r\n\r\n---\r\n\r\n### Release
Notes\r\n\r\n<details>\r\n<summary>sergeysova/jq-action
(sergeysova/jq-action)</summary>\r\n\r\n###\r\n[`v2.3.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.3.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.2.1...v2.3.0)\r\n\r\n#####
What's Changed\r\n\r\n- Use $GITHUB_OUTPUT instead of set-output
by\r\n[@&#8203;satoryu](https://togithub.com/satoryu)
in\r\n[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;satoryu](https://togithub.com/satoryu) made their
first\r\ncontribution
in\r\n[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2...v2.3.0\r\n\r\n###\r\n[`v2.2.1`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.1)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1)\r\n\r\n#####
What's Changed\r\n\r\n- Fix globbing in input
by\r\n[@&#8203;norman-zon](https://togithub.com/norman-zon)
in\r\n[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;norman-zon](https://togithub.com/norman-zon) made their
first\r\ncontribution
in\r\n[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1\r\n\r\n###\r\n[`v2.2.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0)\r\n\r\n#####
What's Changed\r\n\r\n- fix: use correct multiline output
by\r\n[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer)
in\r\n[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer) made
their\r\nfirst contribution
in\r\n[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0\r\n\r\n###\r\n[`v2.1.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.1.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2...v2.1.0)\r\n\r\nAdded
support for multiline
`run`\r\n[https://github.com/sergeysova/jq-action/pull/3](https://togithub.com/sergeysova/jq-action/pull/3)\r\n\r\n</details>\r\n\r\n---\r\n\r\n###
Configuration\r\n\r\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\r\nAutomerge - At any time (no schedule
defined).\r\n\r\n🚦 **Automerge**: Disabled by config. Please merge this
manually once you\r\nare satisfied.\r\n\r\n♻ **Rebasing**: Whenever PR
becomes conflicted, or you tick the\r\nrebase/retry checkbox.\r\n\r\n🔕
**Ignore**: Close this PR and you won't be reminded about this
update\r\nagain.\r\n\r\n---\r\n\r\n- [ ] <!-- rebase-check -->If you
want to rebase/retry this PR, check\r\nthis box\r\n\r\n---\r\n\r\nThis
PR has been generated by
[Renovate\r\nBot](https://togithub.com/renovatebot/renovate).\r\n\r\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->\r\n\r\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>","sha":"ec196ce91c5c135e958a5567970349e435604d5f","branchLabelMapping":{"^v8.16.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","💝community","backport:all-open","v8.16.0"],"title":"Update
sergeysova/jq-action action to v2.3.0
(main)","number":190552,"url":"https://github.com/elastic/kibana/pull/190552","mergeCommit":{"message":"Update
sergeysova/jq-action action to v2.3.0 (main) (#190552)\n\nThis PR
contains the following updates:\r\n\r\n| Package | Type | Update |
Change |\r\n|---|---|---|---|\r\n|
[sergeysova/jq-action](https://togithub.com/sergeysova/jq-action)
|\r\naction | minor | `v2` -> `v2.3.0` |\r\n\r\n---\r\n\r\n### Release
Notes\r\n\r\n<details>\r\n<summary>sergeysova/jq-action
(sergeysova/jq-action)</summary>\r\n\r\n###\r\n[`v2.3.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.3.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.2.1...v2.3.0)\r\n\r\n#####
What's Changed\r\n\r\n- Use $GITHUB_OUTPUT instead of set-output
by\r\n[@&#8203;satoryu](https://togithub.com/satoryu)
in\r\n[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;satoryu](https://togithub.com/satoryu) made their
first\r\ncontribution
in\r\n[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2...v2.3.0\r\n\r\n###\r\n[`v2.2.1`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.1)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1)\r\n\r\n#####
What's Changed\r\n\r\n- Fix globbing in input
by\r\n[@&#8203;norman-zon](https://togithub.com/norman-zon)
in\r\n[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;norman-zon](https://togithub.com/norman-zon) made their
first\r\ncontribution
in\r\n[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1\r\n\r\n###\r\n[`v2.2.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0)\r\n\r\n#####
What's Changed\r\n\r\n- fix: use correct multiline output
by\r\n[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer)
in\r\n[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer) made
their\r\nfirst contribution
in\r\n[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0\r\n\r\n###\r\n[`v2.1.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.1.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2...v2.1.0)\r\n\r\nAdded
support for multiline
`run`\r\n[https://github.com/sergeysova/jq-action/pull/3](https://togithub.com/sergeysova/jq-action/pull/3)\r\n\r\n</details>\r\n\r\n---\r\n\r\n###
Configuration\r\n\r\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\r\nAutomerge - At any time (no schedule
defined).\r\n\r\n🚦 **Automerge**: Disabled by config. Please merge this
manually once you\r\nare satisfied.\r\n\r\n♻ **Rebasing**: Whenever PR
becomes conflicted, or you tick the\r\nrebase/retry checkbox.\r\n\r\n🔕
**Ignore**: Close this PR and you won't be reminded about this
update\r\nagain.\r\n\r\n---\r\n\r\n- [ ] <!-- rebase-check -->If you
want to rebase/retry this PR, check\r\nthis box\r\n\r\n---\r\n\r\nThis
PR has been generated by
[Renovate\r\nBot](https://togithub.com/renovatebot/renovate).\r\n\r\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->\r\n\r\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>","sha":"ec196ce91c5c135e958a5567970349e435604d5f"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.16.0","branchLabelMappingKey":"^v8.16.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/190552","number":190552,"mergeCommit":{"message":"Update
sergeysova/jq-action action to v2.3.0 (main) (#190552)\n\nThis PR
contains the following updates:\r\n\r\n| Package | Type | Update |
Change |\r\n|---|---|---|---|\r\n|
[sergeysova/jq-action](https://togithub.com/sergeysova/jq-action)
|\r\naction | minor | `v2` -> `v2.3.0` |\r\n\r\n---\r\n\r\n### Release
Notes\r\n\r\n<details>\r\n<summary>sergeysova/jq-action
(sergeysova/jq-action)</summary>\r\n\r\n###\r\n[`v2.3.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.3.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.2.1...v2.3.0)\r\n\r\n#####
What's Changed\r\n\r\n- Use $GITHUB_OUTPUT instead of set-output
by\r\n[@&#8203;satoryu](https://togithub.com/satoryu)
in\r\n[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;satoryu](https://togithub.com/satoryu) made their
first\r\ncontribution
in\r\n[https://github.com/sergeysova/jq-action/pull/9](https://togithub.com/sergeysova/jq-action/pull/9)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2...v2.3.0\r\n\r\n###\r\n[`v2.2.1`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.1)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1)\r\n\r\n#####
What's Changed\r\n\r\n- Fix globbing in input
by\r\n[@&#8203;norman-zon](https://togithub.com/norman-zon)
in\r\n[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;norman-zon](https://togithub.com/norman-zon) made their
first\r\ncontribution
in\r\n[https://github.com/sergeysova/jq-action/pull/7](https://togithub.com/sergeysova/jq-action/pull/7)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2.2.0...v2.2.1\r\n\r\n###\r\n[`v2.2.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.2.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0)\r\n\r\n#####
What's Changed\r\n\r\n- fix: use correct multiline output
by\r\n[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer)
in\r\n[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)\r\n\r\n#####
New Contributors\r\n\r\n-
[@&#8203;kennethkalmer](https://togithub.com/kennethkalmer) made
their\r\nfirst contribution
in\r\n[https://github.com/sergeysova/jq-action/pull/5](https://togithub.com/sergeysova/jq-action/pull/5)\r\n\r\n**Full
Changelog**:\r\nhttps://github.com/sergeysova/jq-action/compare/v2.1.0...v2.2.0\r\n\r\n###\r\n[`v2.1.0`](https://togithub.com/sergeysova/jq-action/releases/tag/v2.1.0)\r\n\r\n[Compare\r\nSource](https://togithub.com/sergeysova/jq-action/compare/v2...v2.1.0)\r\n\r\nAdded
support for multiline
`run`\r\n[https://github.com/sergeysova/jq-action/pull/3](https://togithub.com/sergeysova/jq-action/pull/3)\r\n\r\n</details>\r\n\r\n---\r\n\r\n###
Configuration\r\n\r\n📅 **Schedule**: Branch creation - At any time (no
schedule defined),\r\nAutomerge - At any time (no schedule
defined).\r\n\r\n🚦 **Automerge**: Disabled by config. Please merge this
manually once you\r\nare satisfied.\r\n\r\n♻ **Rebasing**: Whenever PR
becomes conflicted, or you tick the\r\nrebase/retry checkbox.\r\n\r\n🔕
**Ignore**: Close this PR and you won't be reminded about this
update\r\nagain.\r\n\r\n---\r\n\r\n- [ ] <!-- rebase-check -->If you
want to rebase/retry this PR, check\r\nthis box\r\n\r\n---\r\n\r\nThis
PR has been generated by
[Renovate\r\nBot](https://togithub.com/renovatebot/renovate).\r\n\r\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJUZWFtOk9wZXJhdGlvbnMiLCJiYWNrcG9ydDphbGwtb3BlbiIsInJlbGVhc2Vfbm90ZTpza2lwIl19-->\r\n\r\nCo-authored-by:
elastic-renovate-prod[bot]
<174716857+elastic-renovate-prod[bot]@users.noreply.github.com>","sha":"ec196ce91c5c135e958a5567970349e435604d5f"}}]}]
BACKPORT-->

Co-authored-by: elastic-renovate-prod[bot] <174716857+elastic-renovate-prod[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants