Skip to content

Commit

Permalink
Add action to pull data.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
supernord committed Mar 18, 2024
1 parent 918ef66 commit 2bacded
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/import_file.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Pull data.yml from australianbiocommons.github.io

on:
workflow_dispatch:
push:

jobs:
pull-file:
runs-on: ubuntu-latest
steps:

- name: Checkout source
uses: actions/checkout@v3
with:
repository: AustralianBioCommons/australianbiocommons.github.io
path: temporary_folder

- name: Update
run: |
cd temporary_folder
cp -u _data/data.yml ../
cd ..
- name: Check for changes
run: |
if git diff --quiet; then
echo "There is no change in data.yml."
echo "exiting = true" >> $GITHUB_ENV
fi
- name: Commit
if: env.exiting != 'true'
run: |
git config user.name "{{ github.actor }}"
git config user.email "{{ github.actor }}@users.noreply.github.com"
git add _data/data.yml
git commit -m "Updated the data.yml sourced from AustralianBioCommons/australianbiocommons.github.io"
- name: Push
if: env.exiting != 'true'
run: |
git push
fi

0 comments on commit 2bacded

Please sign in to comment.