Feat: Add workflow to automate Repository structure #26
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.
Fixes: #25
This pull request includes significant changes to automate the detection and updating of the repository structure. The most important changes involve the addition of a Python script to generate and update the repository structure and a GitHub Actions workflow to run this script on a schedule.
Automation of repository structure updates:
.github/scripts/update_structure.py
: Added a Python script that generates the repository structure, updates arepo_structure.txt
file, and modifies theREADME.md
file if necessary.GitHub Actions workflow:
.github/workflows/structure.yml
: Added a GitHub Actions workflow to run the repository structure update script every hour and allow manual triggering. This workflow includes steps to set up Python, install dependencies, and commit and push changes if the repository structure has been updated.