Update Plugin List #474
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Plugin List | |
on: | |
schedule: | |
- cron: '*/30 * * * *' # Runs every 30 minutes | |
workflow_dispatch: # Allows manual trigger | |
jobs: | |
update-plugin-list: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Run update script | |
run: python scripts/update_plugin_list.py | |
- name: Check for changes | |
id: git-status | |
run: | | |
git add Plugins/plugin_list.json | |
if git diff-index --quiet HEAD; then | |
echo "No changes detected" | |
echo "::set-output name=changes_detected::false" | |
else | |
echo "Changes detected" | |
echo "::set-output name=changes_detected::true" | |
fi | |
- name: Commit changes | |
if: steps.git-status.outputs.changes_detected == 'true' | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git commit -m 'Update plugin list with latest versions and dates' | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: No changes to commit | |
if: steps.git-status.outputs.changes_detected == 'false' | |
run: echo "No changes to commit, working tree clean. Job complete." |