Update Products #3
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: Update Products | |
on: | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'With build debug' | |
required: false | |
default: false | |
# push: | |
# branches: | |
# - master | |
jobs: | |
update_maps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
- name: Download and Build Products Table | |
run: | | |
cd products | |
echo 'DELETE FROM "product";' > ./product.sql.new | |
echo 'COPY "product" ("oid", "mib", "leaf", "description") FROM STDIN;' >> ./product.sql.new | |
curl --silent --location "https://mibbrowser.online/mibdb_search.php?all=1" | \ | |
grep JUNIPER-CHASSIS-DEFINES | \ | |
grep -o 'mib=[^"]\+' | \ | |
sed -e 's/mib=//' | \ | |
grep -hi -E '(product|oid|JUNIPER-CHASSIS-DEFINES)' | \ | |
while read mib; do \ | |
curl --silent --location "https://mibbrowser.online/mibs_json/$mib.json" | \ | |
./pysmi-json-to-products-table.py >> ./product.sql.new; \ | |
done | |
mv ./product.sql.new ./product.sql | |
- name: Commit files | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add --all | |
git diff --staged --quiet || git commit -m "Updated Products via Github Actions" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
if: ${{ github.event_name == 'workflow_dispatch' && ! inputs.debug_enabled }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
## if: always() && github.event.inputs.debug_enabled | |
# if: always() && ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
## with: | |
## sudo: true |