This repository uses GitHub Actions to automatically update the README with the latest skills from configured marketplaces.
The workflow is configured to use GITHUB_TOKEN for all operations (checkout and push). For this to work in public repositories, you may need to adjust repository settings:
- Go to Repository Settings → Actions → General
- Under "Workflow permissions", select "Read and write permissions"
- This allows
GITHUB_TOKENto push changes to the repository
The workflow runs hourly and will:
- Fetch the latest skills from configured marketplaces
- Update the README.md if changes are detected
- Commit and push the changes automatically
If the workflow fails with permission errors:
- Ensure workflow permissions are set to "Read and write permissions" in repository settings
- Check that the repository allows GitHub Actions to create commits
- For public repositories, verify that branch protection rules don't block automated commits
You can trigger the workflow manually from the Actions tab or by dispatching it via the GitHub CLI:
gh workflow run "Update Skills README"If you prefer not to change repository permissions, you can still set up a PAT as a fallback:
- Create a Personal Access Token with
repoorpublic_reposcope - Add it as
SKILL_UPDATE_TOKENrepository secret - The workflow will automatically use it if available
However, this should not be necessary with proper repository permission settings.