Skip to content

Fetch Remote Assets #35

Fetch Remote Assets

Fetch Remote Assets #35

Workflow file for this run

name: Fetch Remote Assets
on:
workflow_dispatch:
schedule:
- cron: '00 01 * * *' # Should run 1 hour after module list update.
env:
MODULES_LIST_URL: "https://raw.githubusercontent.com/nesi/modules-list/main/module-list.json"
GLOSSARY_URL: "https://raw.githubusercontent.com/nesi/nesi-wordlist/main/outputs/glossary.md"
DICTIONARY_URL: "https://raw.githubusercontent.com/nesi/nesi-wordlist/main/outputs/dictionary.txt"
SNIPPETS_URL: "https://raw.githubusercontent.com/nesi/nesi-wordlist/main/outputs/snippets.md"
BRANCH_NAME: "new-assets"
jobs:
fetch-includes:
runs-on: ubuntu-latest
steps:
- name: "Set Up Env"
uses: actions/checkout@v4
- run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git checkout -b ${BRANCH_NAME}
mkdir -pv docs/assets/glossary
- name: Fetch Module List
run: wget -O docs/assets/module-list.json ${MODULES_LIST_URL}
- name: Link apps pages
run: python3 .github/workflows/link_apps_pages.py
- name: Fetch Glossary
run: wget -O overrides/partials/glossary.html ${GLOSSARY_URL}
- name: Fetch Dictionary
run: wget -O docs/assets/glossary/dictionary.txt ${DICTIONARY_URL}
- name: Fetch Snippets
run: wget -O docs/assets/glossary/snippets.md ${SNIPPETS_URL}
- name: Commit to Branch '${BRANCH_NAME}'
id: commit
run: |
git pull origin main
git add --all
git commit -m "update remote assets"
echo "no-change=$?" >> $GITHUB_OUTPUT
- name: Push, and make PR
if: ${{ ! steps.commit.outputs.no-change }}
run: |
git push origin ${BRANCH_NAME}
gh pr create -B main -H ${BRANCH_NAME} --title 'Update Remote Assets' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}