Skip to content

Commit

Permalink
added GitHub Workflow to update site list
Browse files Browse the repository at this point in the history
This action executes the site_list.py script when data.json is modified
and the changes are pushed to the 'main' branch
  • Loading branch information
sdushantha committed Mar 13, 2023
1 parent 42f825b commit 22772d0
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/update-site-list.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Update Site List

# Trigger the workflow when changes are pushed to the main branch
# and the changes include the resources/data.json file
on:
push:
branches:
- main
paths:
- resources/data.json

jobs:
sync-json-data:
# Use the latest version of Ubuntu as the runner environment
runs-on: ubuntu-latest

steps:
# Check out the code at the specified pull request head commit
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

# Install Python 3.10
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

# Execute the site_list.py Python script
- name: Execute site_list.py
run: python site_list.py

# Commit any changes made by the script
- name: Commit files
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
if ! git diff --exit-code; then
git commit -a -m "Updated Site List"
fi
# Push the changes to the remote repository
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}

0 comments on commit 22772d0

Please sign in to comment.