-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (44 loc) · 1.47 KB
/
update_plugins.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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."