Skip to content

Update Jewish calendar omer counting service documentation #38706

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

Merged
merged 13 commits into from
Apr 30, 2025

Conversation

yohaybn
Copy link

@yohaybn yohaybn commented Apr 24, 2025

Proposed change

Type of change

  • Spelling, grammar or other readability improvements (current branch).
  • Adjusted missing or incorrect information in the current documentation (current branch).
  • Added documentation for a new integration I'm adding to Home Assistant (next branch).
  • Added documentation for a new feature I'm adding to Home Assistant (next branch).
  • Removed stale or deprecated documentation.

Additional information

Checklist

  • This PR uses the correct branch, based on one of the following:
    • I made a change that is related to an upcoming version of Home Assistant and used the next branch.
  • The documentation follows the Home Assistant documentation standards.

Summary by CodeRabbit

  • Documentation
    • Updated Omer counting action docs to clarify optional date and language parameters with default values.
    • Introduced a new optional after_sunset parameter to adjust counting based on Hebrew date after sunset.
    • Enhanced examples to showcase simplified usage and the new after_sunset option.

@home-assistant home-assistant bot added has-parent This PR has a parent PR in a other repo next This PR goes into the next branch labels Apr 24, 2025
Copy link

netlify bot commented Apr 24, 2025

Deploy Preview for home-assistant-docs ready!

Name Link
🔨 Latest commit ba62f74
🔍 Latest deploy log https://app.netlify.com/sites/home-assistant-docs/deploys/680e3b9cf754f80008b8005d
😎 Deploy Preview https://deploy-preview-38706--home-assistant-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

coderabbitai bot commented Apr 24, 2025

📝 Walkthrough

Walkthrough

The documentation for the jewish_calendar.count_omer action was updated. The date and language attributes are now optional, defaulting to today and Hebrew, respectively. A new optional boolean attribute, after_sunset, was introduced to adjust the calculation to the next day if specified and if a date is provided. Example usage was revised to reflect these changes, including a new minimal example that demonstrates invoking the action with only the nusach parameter.

Changes

File(s) Change Summary
source/_integrations/jewish_calendar.markdown Updated documentation for jewish_calendar.count_omer: made date and language optional with defaults, added after_sunset attribute, revised and added example usage.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant JewishCalendarIntegration

    User->>JewishCalendarIntegration: Call count_omer (nusach, [date], [language], [after_sunset])
    alt after_sunset is true and date provided
        JewishCalendarIntegration->>JewishCalendarIntegration: Calculate Omer for next day after date
    else after_sunset not provided or date not provided
        JewishCalendarIntegration->>JewishCalendarIntegration: Calculate Omer for date (default: today)
    end
    JewishCalendarIntegration-->>User: Return Omer count text (in specified/default language)
Loading

📜 Recent review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 5d1be49 and ba62f74.

📒 Files selected for processing (1)
  • source/_integrations/jewish_calendar.markdown (3 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • source/_integrations/jewish_calendar.markdown
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - home-assistant-docs
  • GitHub Check: Header rules - home-assistant-docs
  • GitHub Check: Pages changed - home-assistant-docs

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

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

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

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

CodeRabbit Commands (Invoked using PR comments)

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

Other keywords and placeholders

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

CodeRabbit Configuration File (.coderabbit.yaml)

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

Documentation and Community

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

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (4)
source/_integrations/jewish_calendar.markdown (4)

153-153: Replace hard tabs and clarify default for date
The table row for date contains hard tabs and the description reads "Defaults today". Please replace the tab characters with spaces and update the text to "Defaults to today."

🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

153-153: Hard tabs
Column: 23

(MD010, no-hard-tabs)


153-153: Hard tabs
Column: 82

(MD010, no-hard-tabs)


154-154: Refine and reformat description for is_after_sunset
This new attribute line uses hard tabs and the wording could be clearer. Replace tabs with spaces and rephrase to something like:
"If true and a date is provided, calculates the Omer count for the next day. Ignored if no date is specified."

🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

154-154: Hard tabs
Column: 25

(MD010, no-hard-tabs)


156-156: Replace hard tabs and clarify default for language
The language row also uses a hard tab. Please switch to spaces and specify the default clearly, for example: "Defaults to hebrew."

🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

156-156: Hard tabs
Column: 23

(MD010, no-hard-tabs)


180-186: Revise minimal example formatting and fix grammar
The "Minimal call" section has double spaces, lacks a heading level, and the fenced block isn’t surrounded by blank lines. Also, improve the sentence to include "the". Suggested diff:

- Minimal  call
- ```yaml
- action: jewish_calendar.count_omer
- data:
-   nusach: sfarad
- ```
- Will return the current text in Hebrew based on current Hebrew date (before/after  sunset)
+ #### Minimal call
+
+ ```yaml
+ action: jewish_calendar.count_omer
+ data:
+   nusach: sfarad
+ ```
+
+ Will return the current text in Hebrew based on the current Hebrew date (before/after sunset).
🧰 Tools
🪛 LanguageTool

[uncategorized] ~186-~186: You might be missing the article “the” here.
Context: ...urn the current text in Hebrew based on current Hebrew date (before/after sunset)

(AI_EN_LECTOR_MISSING_DETERMINER_THE)

🪛 markdownlint-cli2 (0.17.2)

181-181: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)


185-185: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 32fc05e and 97c0108.

📒 Files selected for processing (1)
  • source/_integrations/jewish_calendar.markdown (3 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
source/_integrations/jewish_calendar.markdown

153-153: Hard tabs
Column: 23

(MD010, no-hard-tabs)


153-153: Hard tabs
Column: 82

(MD010, no-hard-tabs)


154-154: Hard tabs
Column: 25

(MD010, no-hard-tabs)


156-156: Hard tabs
Column: 23

(MD010, no-hard-tabs)


181-181: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)


185-185: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

🪛 LanguageTool
source/_integrations/jewish_calendar.markdown

[uncategorized] ~186-~186: You might be missing the article “the” here.
Context: ...urn the current text in Hebrew based on current Hebrew date (before/after sunset)

(AI_EN_LECTOR_MISSING_DETERMINER_THE)

⏰ Context from checks skipped due to timeout of 90000ms (5)
  • GitHub Check: Redirect rules - home-assistant-docs
  • GitHub Check: Header rules - home-assistant-docs
  • GitHub Check: Pages changed - home-assistant-docs
  • GitHub Check: Lint Markdown
  • GitHub Check: Lint Text
🔇 Additional comments (1)
source/_integrations/jewish_calendar.markdown (1)

168-168: Adding is_after_sunset to the main example is correct
The example now properly includes is_after_sunset: true, reflecting the updated action signature.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (2)
source/_integrations/jewish_calendar.markdown (2)

153-154: Enhance table descriptions for clarity and consistency

  • Rephrase descriptions to use proper grammar and punctuation: e.g., change “Defaults today” → “Defaults to today.”
  • Capitalize sentence beginnings and ensure each description ends with a period.
  • Confirm consistent casing for “yes”/“no” values per Home Assistant style guide.

Proposed diff:

| `date`           | yes   | Date for which to get the Omer blessing. Defaults to today. |
| `is_after_sunset`| yes   | If true and a date is provided, calculates the Omer count for the next day. Ignored if no date is specified. |

180-187: Fix heading spacing and surround code block with blank lines

  • Remove the extra space in the heading: change #### Minimal call#### Minimal call.
  • Add a blank line before and after the fenced code block to satisfy MD022 and MD031.

Proposed diff:

-#### Minimal  call
-
-```yaml
-action: jewish_calendar.count_omer
-data:
-  nusach: sfarad
-```
-Will return the current text in Hebrew based on current Hebrew date (before/after  sunset)
+#### Minimal call
+
+```yaml
+action: jewish_calendar.count_omer
+data:
+  nusach: sfarad
+```
+
+Will return the current text in Hebrew based on current Hebrew date (before/after sunset)
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Above

(MD022, blanks-around-headings)


180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below

(MD022, blanks-around-headings)


181-181: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)


185-185: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 97c0108 and be0827b.

📒 Files selected for processing (1)
  • source/_integrations/jewish_calendar.markdown (3 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.17.2)
source/_integrations/jewish_calendar.markdown

180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Above

(MD022, blanks-around-headings)


180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below

(MD022, blanks-around-headings)


181-181: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)


185-185: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - home-assistant-docs
  • GitHub Check: Header rules - home-assistant-docs
  • GitHub Check: Pages changed - home-assistant-docs
🔇 Additional comments (1)
source/_integrations/jewish_calendar.markdown (1)

168-168: Example updated correctly with new attribute

The primary YAML example now includes is_after_sunset: true, which clearly demonstrates the new optional attribute.

Copy link
Contributor

@tsvi tsvi left a comment

Choose a reason for hiding this comment

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

Some minor fixes.
Most importantly, is_after_sunset has been renamed to after_sunset to match the updated code.

yohaybn and others added 5 commits April 27, 2025 09:25
Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
source/_integrations/jewish_calendar.markdown (1)

180-186: Refine minimal call section formatting and wording

  • Surround the heading and fenced blocks with blank lines to satisfy lint rules (MD022, MD031).
  • Simplify wording: replace “taking into consideration” with “considering”.

Proposed diff:

-#### Minimal call
+ 
+#### Minimal call
+
```yaml
 action: jewish_calendar.count_omer
 data:
   nusach: sfarad

Will return the current text in Hebrew based on the current Hebrew date (considering the current time w.r.t. sunset)


<details>
<summary>🧰 Tools</summary>

<details>
<summary>🪛 LanguageTool</summary>

[style] ~186-~186: The phrase “taking into consideration” may be wordy. To make your writing clearer, consider replacing it.
Context: ...ebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)  

(TAKE_INTO_CONSIDERATION)

</details>
<details>
<summary>🪛 markdownlint-cli2 (0.17.2)</summary>

180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Above

(MD022, blanks-around-headings)

---

180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below

(MD022, blanks-around-headings)

---

181-181: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

---

185-185: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

</details>

</details>

</blockquote></details>

</blockquote></details>

<details>
<summary>📜 Review details</summary>

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

<details>
<summary>📥 Commits</summary>

Reviewing files that changed from the base of the PR and between be0827b38d22aa76e2e2716fc9625a69420c7683 and 5cbbd10a163d943b9d0fbc9530ea2bb8ab3e9828.

</details>

<details>
<summary>📒 Files selected for processing (1)</summary>

* `source/_integrations/jewish_calendar.markdown` (3 hunks)

</details>

<details>
<summary>🧰 Additional context used</summary>

<details>
<summary>🪛 LanguageTool</summary>

<details>
<summary>source/_integrations/jewish_calendar.markdown</summary>

[style] ~186-~186: The phrase “taking into consideration” may be wordy. To make your writing clearer, consider replacing it.
Context: ...ebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)  

(TAKE_INTO_CONSIDERATION)

</details>

</details>
<details>
<summary>🪛 markdownlint-cli2 (0.17.2)</summary>

<details>
<summary>source/_integrations/jewish_calendar.markdown</summary>

180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Above

(MD022, blanks-around-headings)

---

180-180: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below

(MD022, blanks-around-headings)

---

181-181: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

---

185-185: Fenced code blocks should be surrounded by blank lines
null

(MD031, blanks-around-fences)

</details>

</details>

</details>

<details>
<summary>⏰ Context from checks skipped due to timeout of 90000ms (3)</summary>

* GitHub Check: Redirect rules - home-assistant-docs
* GitHub Check: Header rules - home-assistant-docs
* GitHub Check: Pages changed - home-assistant-docs

</details>

<details>
<summary>🔇 Additional comments (1)</summary><blockquote>

<details>
<summary>source/_integrations/jewish_calendar.markdown (1)</summary>

`168-168`: **Example usage correctly includes `after_sunset`**  
The new `after_sunset: true` line aligns with the updated API. No further changes needed here.

</details>

</blockquote></details>

</details>

<!-- This is an auto-generated comment by CodeRabbit for review status -->

yohaybn and others added 2 commits April 27, 2025 14:23
Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
Comment on lines 185 to 186
```
Will return the current text in Hebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)
Copy link
Contributor

Choose a reason for hiding this comment

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

I didn't mean to delete this, I only wanted to add a whitespace between ``` and the text.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (1)
source/_integrations/jewish_calendar.markdown (1)

153-156: Ensure consistent table formatting and default notation

The after_sunset row should end with a period and use lowercase true to match YAML conventions. Also add a comma after “Hebrew date” for clarity and normalize spacing around the pipe separators:

-| `after_sunset` | yes  | If true and a date is provided, calculates the Omer count based on the Hebrew date which starts after sunset. Ignored if no date is specified. Defaults to True |
+| `after_sunset` | yes  | If true and a date is provided, calculates the Omer count based on the Hebrew date, which starts after sunset. Ignored if no date is specified. Defaults to true. |
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between cb98a9d and bdad99b.

📒 Files selected for processing (1)
  • source/_integrations/jewish_calendar.markdown (3 hunks)
🧰 Additional context used
🪛 LanguageTool
source/_integrations/jewish_calendar.markdown

[style] ~189-~189: The phrase “taking into consideration” may be wordy. To make your writing clearer, consider replacing it.
Context: ...ebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)

(TAKE_INTO_CONSIDERATION)

🔇 Additional comments (2)
source/_integrations/jewish_calendar.markdown (2)

168-168: Great addition of after_sunset in the example

Including after_sunset: true in the full example helps users see how to opt into post-sunset calculations.


183-187: Minimal call snippet added correctly

This minimal example correctly shows invoking the action with only the required nusach parameter, implicitly using the documented defaults (date=today, language=Hebrew, after_sunset=true).

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (2)
source/_integrations/jewish_calendar.markdown (2)

168-168: Consider reordering keys in the full example
In the full-example snippet you list all four attributes. To improve readability, group the required key first (nusach) and then the optional keys in a logical order (e.g., date, language, after_sunset). This makes it clearer which fields users truly must supply.

Example diff:

   data:
     nusach: sfarad
-    language: en
-    after_sunset: true
-    date: "2025-05-20"
+    date: "2025-05-20"       # optional; defaults to today
+    language: en             # optional; defaults to Hebrew
+    after_sunset: true       # optional; defaults to true

180-189: Enhance the minimal call section with a sample response and tighten phrasing
The minimal-call example shows only the request but no output. For consistency with the full example, add a YAML snippet illustrating the expected response (e.g., message, weeks, days, total_days).
Additionally, the phrase “taking into consideration the current time w.r.t. sunset” can be simplified for clarity. For example:

- Will return the current text in Hebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)
+ Will return the current text in Hebrew based on the Hebrew date, considering the current time relative to sunset.
🧰 Tools
🪛 LanguageTool

[style] ~189-~189: The phrase “taking into consideration” may be wordy. To make your writing clearer, consider replacing it.
Context: ...ebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)

(TAKE_INTO_CONSIDERATION)

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between bdad99b and 3545b1e.

📒 Files selected for processing (1)
  • source/_integrations/jewish_calendar.markdown (3 hunks)
🧰 Additional context used
🪛 LanguageTool
source/_integrations/jewish_calendar.markdown

[style] ~189-~189: The phrase “taking into consideration” may be wordy. To make your writing clearer, consider replacing it.
Context: ...ebrew based on the current Hebrew date (taking into consideration the current time w.r.t. sunset)

(TAKE_INTO_CONSIDERATION)

⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: Redirect rules - home-assistant-docs
  • GitHub Check: Header rules - home-assistant-docs
  • GitHub Check: Pages changed - home-assistant-docs
🔇 Additional comments (1)
source/_integrations/jewish_calendar.markdown (1)

153-156: Verify default values match implementation
The updated table marks date, after_sunset, nusach, and language as optional with defaults of today, true, and Hebrew respectively. Please confirm these defaults align with the integration’s code (e.g., the action schema or service handler).

Co-authored-by: Tsvi Mostovicz <ttmost@gmail.com>
@tsvi
Copy link
Contributor

tsvi commented Apr 27, 2025

@home-assistant rename Update Jewish calendar omer counting service documentation

@mib1185 mib1185 changed the title Update jewish_calendar.markdown Update Jewish calendar omer counting service documentation Apr 27, 2025
@home-assistant home-assistant bot added the parent-merged The parent PR has been merged already label Apr 30, 2025
@frenck frenck merged commit 9e4f362 into home-assistant:next Apr 30, 2025
7 checks passed
@home-assistant home-assistant bot removed the parent-merged The parent PR has been merged already label Apr 30, 2025
@github-actions github-actions bot locked and limited conversation to collaborators May 1, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
has-parent This PR has a parent PR in a other repo next This PR goes into the next branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants