fix(actions): bump issue-triage to fixed SHA to resolve YAML parsing error#2085
Open
uwe-mayer wants to merge 1 commit into
Open
fix(actions): bump issue-triage to fixed SHA to resolve YAML parsing error#2085uwe-mayer wants to merge 1 commit into
uwe-mayer wants to merge 1 commit into
Conversation
…error The previous SHA (f87e1e6b) contained a heredoc syntax that caused the GitHub Actions manifest parser to fail with 'could not find expected :'. Update to c7ec5c47 which fixes the heredoc by using a YAML block scalar env variable instead. See: cloudoperators/common#61 Signed-off-by: uwe-mayer <uwe.mayer01@sap.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes the failing Issue Triage GitHub Actions workflow by updating the referenced cloudoperators/common issue-triage action from a SHA that triggers a GitHub Actions YAML parsing error to a newer SHA containing the upstream fix.
Changes:
- Update the pinned
cloudoperators/common/workflows/issue-triageSHA toc7ec5c47aac160939836a5444d17f098b786c234.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: cloudoperators/common/workflows/issue-triage@f87e1e6b7889707a9c10d1a8a9f9f481eb311c06 # main No newline at end of file | ||
| - uses: cloudoperators/common/workflows/issue-triage@c7ec5c47aac160939836a5444d17f098b786c234 # main No newline at end of file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Issue Triage workflow has been failing with:
Root Cause
The workflow was pinned (by Renovate) to SHA
f87e1e6b7889707a9c10d1a8a9f9f481eb311c06which contains a heredoc in the composite action that the GitHub Actions YAML parser cannot handle.Fix
Bump the pinned SHA to
c7ec5c47aac160939836a5444d17f098b786c234which contains the fix from cloudoperators/common#61.References