Skip to content

Update Admin API Reference #6

Update Admin API Reference

Update Admin API Reference #6

# update-admin-api-reference.yml
name: Update Admin API Reference
on:
schedule:
# Run at seven every Monday
- cron: '0 7 * * 1'
workflow_dispatch: # Manual trigger
jobs:
update-admin-api-reference:
runs-on: ubuntu-latest
steps:
- name: Checkout GaloyMoney/blink repo
uses: actions/checkout@v3
with:
repository: 'GaloyMoney/blink'
path: 'blink'
fetch-depth: 0
- name: Get current commit hash
run: echo "CURRENT_COMMIT_HASH=$(git -C blink rev-parse HEAD)" >> $GITHUB_ENV
- name: Hash current schema.graphql
run: |
echo "CURRENT_HASH=$(sha256sum blink/core/api/src/graphql/admin/schema.graphql | awk '{ print $1 }')" >> $GITHUB_ENV
- name: Checkout GaloyMoney/blink to a week ago
run: |
week_old_commit=$(git -C blink rev-list -n 1 --before='1 week ago' main)
echo "Check out to the commit: $week_old_commit"
git -C blink checkout $week_old_commit
- name: Hash the week old schema.graphql
run: echo "WEEK_OLD_HASH=$(sha256sum blink/core/api/src/graphql/admin/schema.graphql | awk '{ print $1 }')" >> $GITHUB_ENV
- name: Check if hashes are the same
if: env.CURRENT_HASH == env.WEEK_OLD_HASH
run: |
echo "There were no changes to the admin API schema during the last week."
- name: Checkout dev.blink.sv repo
if: env.CURRENT_HASH != env.WEEK_OLD_HASH
uses: actions/checkout@v3
with:
repository: 'GaloyMoney/dev.blink.sv'
path: 'dev.blink.sv'
ref: 'main'
fetch-depth: 0
- name: Build and update the API reference
if: env.CURRENT_HASH != env.WEEK_OLD_HASH
run: |
# deps
yarn add spectaql --non-interactive
# checkout blink
cd blink
git checkout ${{ env.CURRENT_COMMIT_HASH }}
# build admin api reference
npx spectaql ../dev.blink.sv/scripts/spectaql/spectaql-config-admin-api.yml \
-t ../dev.blink.sv/static -f admin-api-reference.html
# set dark mode
sed -i 's/spectaql.min.css/spectaql.dark.css/' ../dev.blink.sv/static/admin-api-reference.html
# commit and push changes
cd ../dev.blink.sv
git config --local user.name 'github-actions[bot]'
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
git add .
short_commit_hash=$(echo ${{ env.CURRENT_COMMIT_HASH }} | cut -c 1-7)
git commit -m "docs: admin api reference update to blink commit $short_commit_hash"
git push origin main