-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from mwgg/2024_08_28_sorting
Automatic sorting workflow updates and quick test
- Loading branch information
Showing
2 changed files
with
50 additions
and
44 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,35 +17,41 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- 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 and push changes | ||
if: env.changed == 'true' | ||
run: | | ||
git config --global user.name 'github-actions' | ||
git config --global user.email '[email protected]' | ||
git add airports.json | ||
git commit -m 'Automatically sorted Airports JSON file' | ||
git push | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- 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 '[email protected]' | ||
git add airports.json | ||
git commit -m 'Automatically sorted Airports JSON file' | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} |
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