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

Ci/notify discussions release #787

Merged
merged 3 commits into from
Oct 15, 2024
Merged

Ci/notify discussions release #787

merged 3 commits into from
Oct 15, 2024

Conversation

ccamel
Copy link
Member

@ccamel ccamel commented Oct 14, 2024

Addresses axone-protocol/community#6.

  • Additionally, removes Discord notifications on release, as GitHub Discussions will now serve as the primary release notification channel, with optional forwarding to Discord if needed.
  • Also enables manual triggering with a specific tag input (only for the notification of release on discussions), alongside the default trigger on release. This adds flexibility for replaying the workflow when necessary.​

I manually ran the job on v10.0.0 to ensure everything works properly. You can check the result here: axone-protocol/discussions/7.

Summary by CodeRabbit

  • New Features

    • Introduced manual triggering of the release notification workflow with an optional release tag.
    • Added a new job to create discussion announcements for releases, including links to the changelog.
  • Improvements

    • Enhanced organization of workflow jobs and steps for better efficiency.
    • Dynamic setting of documentation update versions based on the specified release tag.
    • Improved environment variable management with additional outputs for tag and repository name.

@ccamel ccamel self-assigned this Oct 14, 2024
Copy link
Contributor

coderabbitai bot commented Oct 14, 2024

Note

Reviews paused

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Walkthrough

The .github/workflows/notify-release.yml file has been significantly updated to enhance its functionality. A new trigger, workflow_dispatch, allows for manual invocation with an optional tag input. The job notify-discord has been renamed to set-env, focusing on setting environment variables and introducing outputs for tag and repo_name. A new job, notify-github-discussion, has been added to create discussion announcements for releases. Additionally, the update-docs job now uses the output from set-env for versioning, improving the overall workflow structure.

Changes

File Change Summary
.github/workflows/notify-release.yml - Added workflow_dispatch trigger with optional tag input.
- Renamed job notify-discord to set-env, focusing on setting environment variables.
- Added outputs tag and repo_name in set-env job.
- Introduced new job notify-github-discussion for creating release announcements.
- Modified update-docs job to use tag output from set-env instead of directly referencing the release tag.

Poem

In the garden where workflows bloom,
A rabbit hops, dispelling gloom.
With tags to guide and jobs anew,
We celebrate changes, bright and true!
With each release, a joyful cheer,
Hopping along, we spread good cheer! 🐰✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ 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 resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

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

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: 2

🧹 Outside diff range and nitpick comments (2)
.github/workflows/notify-release.yml (2)

31-68: Excellent implementation of GitHub Discussions for release notifications!

This new job perfectly aligns with the PR objective of using GitHub Discussions as the main channel for release notifications. Great job on:

  1. Utilizing the outputs from the set-env job
  2. Extracting the changelog for the specific tag
  3. Creating a well-formatted discussion with relevant links and information

One minor suggestion for improvement:

Consider adding a conditional step to check if the discussion already exists for the given tag. This could prevent duplicate announcements if the workflow is run multiple times for the same release.

Example:

- name: Check if discussion exists
  run: |
    existing_discussion=$(gh api graphql -f query='
      query($owner:String!, $name:String!, $category:String!, $title:String!) {
        repository(owner:$owner, name:$name) {
          discussions(categoryId:$category, first:1, query:$title) {
            totalCount
          }
        }
      }' -F owner=${{ github.repository_owner }} -F name=${{ needs.set-env.outputs.repo_name }} -F category=${{ env.CATEGORY_ID }} -F title="${{ needs.set-env.outputs.repo_name }} ${{ needs.set-env.outputs.tag }} released!" --jq '.data.repository.discussions.totalCount')
    
    if [ "$existing_discussion" -gt 0 ]; then
      echo "Discussion already exists, skipping creation"
      exit 0
    fi
  env:
    GH_TOKEN: ${{ secrets.OPS_TOKEN }}

This step would go before the "Create an announcement discussion for release" step.


137-137: Good update to use the centralized tag output!

The change in the update-docs-version job is well-implemented:

  1. Using ${{ needs.set-env.outputs.tag }} for the axonedVersion input
  2. This change makes the job compatible with both automatic and manual triggers
  3. It correctly leverages the output from the set-env job

This modification aligns well with the overall workflow improvements and ensures that the correct version is used for documentation updates regardless of how the workflow was triggered.

For consistency with the update-docs job, consider renaming the axonedVersion input to version. This would make the input naming consistent across all documentation update jobs.

- "axonedVersion": "${{ needs.set-env.outputs.tag }}"
+ "version": "${{ needs.set-env.outputs.tag }}"

However, make sure this change doesn't break any downstream workflows that might be expecting the axonedVersion input.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 025dd8b and ba8c415.

📒 Files selected for processing (1)
  • .github/workflows/notify-release.yml (4 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/notify-release.yml

20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: workflow command "set-output" was deprecated. use echo "{name}={value}" >> $GITHUB_OUTPUT instead: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions

(deprecated-commands)


20-20: workflow command "set-output" was deprecated. use echo "{name}={value}" >> $GITHUB_OUTPUT instead: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions

(deprecated-commands)


79-79: property "set-env" is not defined in object type {}

(expression)


96-96: property "set-env" is not defined in object type {}

(expression)


113-113: property "set-env" is not defined in object type {}

(expression)


133-133: property "set-env" is not defined in object type {}

(expression)

🔇 Additional comments (4)
.github/workflows/notify-release.yml (4)

7-10: Excellent addition of manual workflow trigger!

The new workflow_dispatch trigger with an optional tag input aligns perfectly with the PR objective. This change offers great flexibility by allowing:

  1. Manual triggering of the workflow
  2. Specifying a particular release tag or defaulting to the latest one

This enhancement will be particularly useful for replaying the workflow when necessary, as mentioned in the PR objectives.


12-16: Well-structured environment setup job!

The renaming of the job to set-env and the addition of tag and repo_name outputs are excellent changes. They provide a centralized place for setting up crucial environment variables that can be used by subsequent jobs. The logic for handling both manual input and automatic tag detection is sound and aligns well with the new manual trigger functionality.

Also applies to: 18-29


83-83: Good update to use the centralized tag output!

The changes in the update-docs job are well-implemented:

  1. Consistently using ${{ needs.set-env.outputs.tag }} across all documentation update steps
  2. This change makes the job compatible with both automatic and manual triggers
  3. It correctly leverages the output from the set-env job

These modifications align well with the overall workflow improvements and ensure that the correct version is used for documentation updates regardless of how the workflow was triggered.

Also applies to: 100-100, 117-117


Line range hint 1-139: Excellent overall improvements to the release notification workflow!

This updated workflow successfully addresses the PR objectives and introduces several improvements:

  1. Support for both automatic and manual triggers, enhancing flexibility
  2. Transition to GitHub Discussions for release notifications, with optional forwarding to Discord
  3. More modular and reusable structure with centralized environment variable setting
  4. Consistent use of the release tag across all jobs

These changes will significantly improve the maintainability and usability of the release notification process. Great job on implementing these enhancements!

There are a few minor issues to address:

  • Updating the deprecated set-output commands
  • Fixing the shellcheck quoting issue
  • Considering the addition of a check for existing discussions
  • Optionally renaming the axonedVersion input for consistency

Once these small adjustments are made, this PR will be in excellent shape for merging.

🧰 Tools
🪛 actionlint

20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: workflow command "set-output" was deprecated. use echo "{name}={value}" >> $GITHUB_OUTPUT instead: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions

(deprecated-commands)


20-20: workflow command "set-output" was deprecated. use echo "{name}={value}" >> $GITHUB_OUTPUT instead: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions

(deprecated-commands)


79-79: property "set-env" is not defined in object type {}

(expression)

.github/workflows/notify-release.yml Outdated Show resolved Hide resolved
.github/workflows/notify-release.yml Outdated Show resolved Hide resolved
Copy link

codecov bot commented Oct 14, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #787   +/-   ##
=======================================
  Coverage   42.77%   42.77%           
=======================================
  Files         108      108           
  Lines        5078     5078           
=======================================
  Hits         2172     2172           
  Misses       2796     2796           
  Partials      110      110           

@ccamel ccamel force-pushed the ci/notify-discussions-release branch from ba8c415 to 952e6e7 Compare October 14, 2024 18:14
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

🧹 Outside diff range and nitpick comments (2)
.github/workflows/notify-release.yml (2)

20-32: Enhance script robustness and address shellcheck warnings

While the script logic is correct, there are some shellcheck warnings that we should address to improve robustness:

  1. Use double quotes to prevent globbing and word splitting.
  2. Properly quote expansions inside ${..} to prevent pattern matching.

Here's an improved version of the script:

  run: |
-   if [ -n "$INPUT_TAG" ]; then
-     TAG="$INPUT_TAG"
+   if [ -n "${INPUT_TAG}" ]; then
+     TAG="${INPUT_TAG}"
    else
-     TAG=$(gh release view --json tagName -q '.tagName')
+     TAG="$(gh release view --json tagName -q '.tagName')"
    fi
    echo "tag=$TAG" >> $GITHUB_OUTPUT

-   REPO_NAME=${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}
+   REPO_NAME="${GITHUB_REPOSITORY#"${GITHUB_REPOSITORY_OWNER}/"}"
    echo "repo_name=$REPO_NAME" >> $GITHUB_OUTPUT
  env:
    INPUT_TAG: ${{ github.event.inputs.tag }}

These changes will address the shellcheck warnings and make the script more robust.

🧰 Tools
🪛 actionlint

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)


Line range hint 72-124: LGTM: Consistent update to docs versioning

The changes to the update-docs job, particularly the use of ${{ needs.set-env.outputs.tag }} for versioning, are consistent with the overall workflow improvements. This ensures that the correct version is used across all documentation updates.

Consider refactoring the repeated steps for updating different documentation sections into a reusable workflow or composite action. This would adhere to the DRY (Don't Repeat Yourself) principle and make future maintenance easier. For example:

jobs:
  update-docs:
    strategy:
      matrix:
        section: [modules, commands, predicates]
    steps:
      - name: Update ${{ matrix.section }} docs
        uses: ./.github/actions/update-docs  # Create a composite action
        with:
          section: ${{ matrix.section }}
          version: ${{ needs.set-env.outputs.tag }}
          repository: ${{ github.repository }}
          docs_directory: docs/${{ matrix.section == 'modules' && 'proto' || matrix.section }}/*

This suggestion is optional and can be considered for future improvements.

🧰 Tools
🪛 actionlint

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)


81-81: property "set-env" is not defined in object type {}

(expression)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between ba8c415 and 952e6e7.

📒 Files selected for processing (1)
  • .github/workflows/notify-release.yml (4 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/notify-release.yml

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)


81-81: property "set-env" is not defined in object type {}

(expression)


98-98: property "set-env" is not defined in object type {}

(expression)


115-115: property "set-env" is not defined in object type {}

(expression)


135-135: property "set-env" is not defined in object type {}

(expression)

🔇 Additional comments (4)
.github/workflows/notify-release.yml (4)

7-10: LGTM: Enhanced workflow flexibility with manual trigger

The addition of the workflow_dispatch trigger with an optional tag input is a great improvement. This change allows for manual invocation of the workflow, providing flexibility to specify a release tag or use the latest one by default. This aligns well with the PR objective of enabling manual triggering of notifications.


12-32: LGTM: Improved job structure and variable handling

The renaming of the job from 'notify-discord' to 'set-env' and the addition of outputs for 'tag' and 'repo_name' improve the clarity and reusability of this job. The logic for setting the tag and extracting the repo name is sound and aligns with the PR objectives.

🧰 Tools
🪛 actionlint

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)


33-70: LGTM: Excellent implementation of GitHub Discussions notifications

The addition of the notify-github-discussion job is a great implementation of the PR objective to update the notification system for releases. This job effectively:

  1. Uses the outputs from the set-env job, ensuring consistency.
  2. Extracts the changelog for the specific release tag.
  3. Creates a well-formatted discussion post with relevant links and information.

This change will significantly improve the visibility and accessibility of release information for the community.


Line range hint 126-141: LGTM: Consistent update to docs version

The changes to the update-docs-version job, specifically the use of ${{ needs.set-env.outputs.tag }} for the axonedVersion, are consistent with the overall workflow improvements. This ensures that the correct version is used when updating the docs version in the separate docs repository.

🧰 Tools
🪛 actionlint

135-135: property "set-env" is not defined in object type {}

(expression)

@ccamel ccamel force-pushed the ci/notify-discussions-release branch from 952e6e7 to 3e89b8c Compare October 14, 2024 18:33
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

🧹 Outside diff range and nitpick comments (2)
.github/workflows/notify-release.yml (2)

18-31: LGTM with minor suggestions: Environment variable setup

The script effectively sets up the environment variables, handling both manual input and automatic tag fetching. It aligns well with the workflow_dispatch input and correctly extracts the repository name.

Consider the following minor improvements to address potential shell scripting issues:

  1. Use double quotes around variable expansions to prevent word splitting:

    - TAG=$(gh release view --json tagName -q '.tagName')
    + TAG="$(gh release view --json tagName -q '.tagName')"
  2. Quote the variable inside the parameter expansion:

    - REPO_NAME=${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}
    + REPO_NAME=${GITHUB_REPOSITORY#"${GITHUB_REPOSITORY_OWNER}/"}

These changes will make the script more robust against potential issues with special characters or whitespace.

🧰 Tools
🪛 actionlint

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)


33-70: LGTM with a minor suggestion: GitHub Discussions notification

The new notify-github-discussion job effectively implements the PR objective of using GitHub Discussions for release notifications. The announcement format is comprehensive and includes all relevant information.

One minor suggestion for consistency:

- title: 🎉 ${{ needs.set-env.outputs.repo_name }} ${{ needs.set-env.outputs.tag }} released!
+ title: 🎉 ${{ github.repository }} ${{ needs.set-env.outputs.tag }} released!

This change makes the title consistent with the body of the message, which uses the full repository name. It also ensures that the repository owner is included in the title, which might be beneficial for organizations with multiple repositories.

Overall, great job on implementing this new notification system!

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 952e6e7 and 3e89b8c.

📒 Files selected for processing (1)
  • .github/workflows/notify-release.yml (4 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/notify-release.yml

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)

🔇 Additional comments (6)
.github/workflows/notify-release.yml (6)

7-10: LGTM: Manual trigger with optional tag input

The addition of the workflow_dispatch trigger with an optional tag input aligns well with the PR objectives. This change provides the flexibility to manually trigger notifications and specify a particular release tag if needed.


12-12: LGTM: Improved job structure with outputs

The renaming of the job to set-env and the addition of tag and repo_name outputs improve the workflow's modularity. This change allows other jobs to easily access these values, supporting the updated notification system.

Also applies to: 14-16


74-74: LGTM: Conditional execution of docs update

The addition of the condition if: github.event_name != 'workflow_dispatch' is a good improvement. It prevents unnecessary documentation updates when the workflow is manually triggered, aligning with the PR objective of allowing manual triggering for specific purposes.


129-129: LGTM: Consistent conditional execution

The addition of if: github.event_name != 'workflow_dispatch' to the update-docs-version job is consistent with the similar change in the update-docs job. This prevents unnecessary version updates when the workflow is manually triggered, aligning with the PR objective of allowing manual triggering for specific purposes.


Line range hint 1-143: Overall LGTM: Comprehensive workflow improvements

This PR successfully implements the objectives outlined, particularly:

  1. Updating the notification system to use GitHub Discussions instead of Discord.
  2. Adding the capability for manual triggering of notifications with an optional tag input.

The changes significantly enhance the workflow's functionality and flexibility. The new notify-github-discussion job is well-implemented, providing comprehensive release announcements. The addition of the workflow_dispatch trigger with the optional tag input offers the desired flexibility for manual notifications.

While not directly related to the main objectives, the updates to the documentation update process are necessary and well-implemented. They ensure that the documentation remains up-to-date with each release.

Minor suggestions have been made for shell script robustness and consistency in the announcement title. Additionally, verification steps have been suggested for the updated API endpoints to ensure everything is correctly set up in the docs repository.

Great job on these improvements! They will undoubtedly enhance the release notification process and overall workflow efficiency.

🧰 Tools
🪛 actionlint

20-20: shellcheck reported issue in this script: SC2086:info:6:20: Double quote to prevent globbing and word splitting

(shellcheck)


20-20: shellcheck reported issue in this script: SC2295:info:8:31: Expansions inside ${..} need to be quoted separately, otherwise they match as patterns

(shellcheck)


20-20: shellcheck reported issue in this script: SC2086:info:9:32: Double quote to prevent globbing and word splitting

(shellcheck)


134-135: LGTM: Updated API endpoint for version update

The change to the API endpoint for triggering the version update is appropriate and consistent with the changes made in the update-docs job.

To ensure everything works as expected:

  1. Verify that the new workflow ID (98246586) is correct for the version update workflow.
  2. Confirm that the docs repository is set up to handle this new endpoint URL.
#!/bin/bash
# Verify the existence of the version update workflow in the docs repository
gh api repos/axone-protocol/docs/actions/workflows | jq '.workflows[] | select(.id == 98246586) | .name'

.github/workflows/notify-release.yml Show resolved Hide resolved
@ccamel
Copy link
Member Author

ccamel commented Oct 14, 2024

@coderabbitai pause

Copy link
Contributor

coderabbitai bot commented Oct 14, 2024

✅ Actions performed

Reviews paused.

@ccamel ccamel force-pushed the ci/notify-discussions-release branch from 3e89b8c to cffd5db Compare October 14, 2024 18:52
@ccamel ccamel force-pushed the ci/notify-discussions-release branch from cffd5db to 503dfb7 Compare October 14, 2024 19:07
@ccamel ccamel requested review from amimart, bdeneux and AnjaMis October 15, 2024 06:09
Copy link
Member

@amimart amimart left a comment

Choose a reason for hiding this comment

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

Like this kind of stuff! Well done 👏

@ccamel ccamel merged commit 8c190ca into main Oct 15, 2024
20 checks passed
@ccamel ccamel deleted the ci/notify-discussions-release branch October 15, 2024 08:46
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.

3 participants