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

github/actions: fix annotation title handling #18283

Merged
merged 1 commit into from
Sep 9, 2024
Merged

Conversation

carlocab
Copy link
Member

@carlocab carlocab commented Sep 8, 2024

  • Have you followed the guidelines in our Contributing document?
  • Have you checked to ensure there aren't other open Pull Requests for the same change?
  • Have you added an explanation of what your changes do and why you'd like us to include them?
  • Have you written new tests for your changes? Here's an example.
  • Have you successfully run brew style with your changes locally?
  • Have you successfully run brew typecheck with your changes locally?
  • Have you successfully run brew tests with your changes locally?

We currently generate invalid workflow commands when we create
annotations with a title but no file. Let's fix that.

While we're here, let's improve handling of titles with :s. We
cannot use titles with :: since GitHub Actions uses this as a
separator for different fields between a workflow command.

Let's also make sure metadata never ends in a : to avoid confusing
the GitHub Actions command parser about where the :: separator is
meant to be.

We currently generate invalid workflow commands when we create
annotations with a `title` but no `file`. Let's fix that.

While we're here, let's improve handling of `title`s with `:`s. We
cannot use `title`s with `::` since GitHub Actions uses this as a
separator for different fields between a workflow command.

Let's also make sure `metadata` never ends in a `:` to avoid confusing
the GitHub Actions command parser about where the `::` separator is
meant to be.
@@ -110,7 +111,11 @@ def to_s
end
end

metadata << ",title=#{Actions.escape(@title)}" if @title
if @title
metadata << (@file ? "," : " ")
Copy link
Member

Choose a reason for hiding this comment

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

This should probably go into an array which we join(",")

Copy link
Member Author

Choose a reason for hiding this comment

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

Yea, good point.

@Bo98 Bo98 merged commit d8d9151 into master Sep 9, 2024
27 checks passed
@Bo98 Bo98 deleted the annotation-titles branch September 9, 2024 01:55
@MikeMcQuaid
Copy link
Member

Thanks @carlocab!

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