add file for automated library list #235
Merged
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.
adafruit/adabot#392 was intending to make adabot automatically generate the list of libraries for this repo like it does the Adafruit one. This did not work successfully when it ran in the actions cron task due to the list file not having been
git add
ed to the repo: https://github.com/adafruit/adabot/actions/runs/12593054193/job/35098547373#step:7:16167It doesn't appear that the Adafruit list is ever
git add
ed either though and it does succeed. I think it's due to using the-a
flag when it commits here: https://github.com/adafruit/adabot/blob/main/adabot/circuitpython_bundle.py#L359. Because the file exists already and gets modified by the task this commit picks up the change with the-a
flag.This PR adds an empty file to get modified by the task so that the same commit function will be able to pick up the changes for the community bundle list.
As noted in the Adabot PR, ultimately we can change this file to just use the existing name rather than this one with "auto" in it. But I felt it was safer to do it in a new file first then once it's verified to be listing and creating the file correctly swap the name over to the old one and get rid of the "auto" one.