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

Added github action to update feature catalog MD file #1714

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

k-a-il
Copy link
Contributor

@k-a-il k-a-il commented Mar 28, 2025

This PR adds a GitHub Action to generate a feature catalog Markdown file, used here. The file is created based on features.yml artifacts downloaded from the localstack/localstack and localstack/localstack-ext repositories.

Copy link

github-actions bot commented Mar 28, 2025

🎊 PR Preview has been successfully built and deployed to https://localstack-docs-preview-pr-1714.surge.sh 🎊

@k-a-il k-a-il self-assigned this Mar 28, 2025
@k-a-il k-a-il requested a review from sannya-singal April 3, 2025 10:41
@k-a-il k-a-il marked this pull request as ready for review April 3, 2025 10:41
@k-a-il k-a-il changed the title Added github action to update feature catalog file Added github action to update feature catalog MD file Apr 3, 2025
@quetzalliwrites quetzalliwrites self-requested a review April 3, 2025 22:28
Copy link
Contributor

@sannya-singal sannya-singal left a comment

Choose a reason for hiding this comment

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

Just some questions and comments, otherwise LGTM 🎉

- name: Latest run-id from community repository
run: |
latest_workflow_id=$(curl -s https://api.github.com/repos/localstack/localstack/actions/workflows \
| jq '.workflows[] | select(.name=="Artifact with features files").id')
Copy link
Contributor

Choose a reason for hiding this comment

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

name: Update feature catalog page
on:
schedule:
- cron: 0 10 * * MON
Copy link
Contributor

Choose a reason for hiding this comment

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

comment: this would change as per relevant changes in https://github.com/localstack/localstack-ext/pull/4302#discussion_r2028189748.

- name: Latest run-id from ext repository
run: |
latest_workflow_id=$(curl -s https://api.github.com/repos/localstack/localstack-ext/actions/workflows \
| jq '.workflows[] | select(.name=="Artifact with features files").id')
Copy link
Contributor

Choose a reason for hiding this comment

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


import yaml

DEFAULT_STATUS = 'not supported'
Copy link
Contributor

Choose a reason for hiding this comment

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

comment: We should consider having consistency in the status being displayed, as in features_schema.json.

"enum": ["supported", "unsupported"]

That means using either unsupported or not supported.

github-token: ${{ secrets.GH_PAT_FEATURE_CATALOG_PAGE_PRO }} # PAT with access to artifacts from GH Actions
run-id: ${{ env.FEATURES_ARTIFACTS_EXT_RUN_ID }}

- name: Generate feature catalog page
Copy link
Contributor

Choose a reason for hiding this comment

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

ques: do we have a sample MD file generated from this? If yes, could you please link it in the comments/description of the PR?

print(f"Error parsing YAML file: {e}")
sys.exit(1)
except FileNotFoundError:
print(f"YAML file not found: {file_path}")
Copy link
Contributor

Choose a reason for hiding this comment

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

suggestion: Consider printing the errors with an annotation.

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.

2 participants