-
Notifications
You must be signed in to change notification settings - Fork 124
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
base: main
Are you sure you want to change the base?
Conversation
🎊 PR Preview has been successfully built and deployed to https://localstack-docs-preview-pr-1714.surge.sh 🎊 |
There was a problem hiding this 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') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comment: similar to above: https://github.com/localstack/localstack-ext/pull/4302#discussion_r2028188292
name: Update feature catalog page | ||
on: | ||
schedule: | ||
- cron: 0 10 * * MON |
There was a problem hiding this comment.
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') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comment: similar to above: https://github.com/localstack/localstack-ext/pull/4302#discussion_r2028188292
|
||
import yaml | ||
|
||
DEFAULT_STATUS = 'not supported' |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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}") |
There was a problem hiding this comment.
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.
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 thelocalstack/localstack
andlocalstack/localstack-ext
repositories.