Merge pull request #147 from maidough/changes-8-30-24 #31
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: Sort JSON | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
types: | |
- closed | |
jobs: | |
sort-json: | |
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Run JSON sorter | |
run: python ./.github/scripts/sort.py airports.json airports.json icao | |
- name: Check if airports.json file changed | |
id: file_changed | |
run: | | |
if git diff --exit-code airports.json; then | |
echo "File did not change" | |
echo "changed=false" >> $GITHUB_ENV | |
else | |
echo "File was changed" | |
echo "changed=true" >> $GITHUB_ENV | |
fi | |
- name: Commit changes | |
if: env.changed == 'true' | |
run: | | |
git config --global user.name 'github-actions' | |
git config --global user.email 'github-actions@github.com' | |
git pull origin ${{ github.ref }} | |
git add airports.json | |
git commit -m 'Automatically sorted Airports JSON file' | |
- name: Push changes | |
if: env.changed == 'true' | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |