cloudposse / cloudposse/github-action-atmos-component-updater
Release Links Not Populating Correctly
- Dominant language
- Python
- Stars
- 5
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
Found a bug? Maybe our [Slack Community](https://cloudposse.com/slack) can help.
[](https://cloudposse.com/slack)
## Describe the Bug
In the component updater PRs, the links for accessing component release notes do not populate correctly

## Expected Behavior
Be able to navigate to the release notes of the new and old component
## Steps to Reproduce
Steps to reproduce the behavior:
1. Run the component updater
2. View the outputted PR
## Screenshots


## Environment (please complete the following information):
It appears as though this function strips the `v` from the release which is needed in the URL:
```python
def __build_component_release_tag_link(self, component: AtmosComponent):
component_release_tag_link = None
version = component.version
if "cloudposse-terraform-components" not in component.uri_repo:
version = f"v{version.lstrip('v')}"
```
Contributor guide
Assessment
This issue has not been assessed yet.