Skip to content

Auto-update ABI JSON file #27951

Auto-update ABI JSON file

Auto-update ABI JSON file #27951

Workflow file for this run

name: Auto-update ABI JSON file
on:
workflow_dispatch:
schedule:
- cron: '0 15-23,0-3 * * *'
jobs:
autoupdate:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub App token
uses: electron/github-app-auth-action@384fd19694fe7b6dcc9a684746c6976ad78228ae # v1.1.1
id: generate-token
with:
creds: ${{ secrets.GH_APP_CREDS }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
token: ${{ steps.generate-token.outputs.token }}
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: '20.x'
- name: Get npm cache directory
id: npm-cache
run: |
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install --no-package-lock
- name: Update ABI registry
run: |
npm run update-abi-registry
git add abi_registry.json
- name: Commit Changes to ABI registry
uses: dsanders11/github-app-commit-action@43de6da2f4d927e997c0784c7a0b61bd19ad6aac # v1.5.0
with:
fail-on-no-changes: false
message: 'feat: update ABI registry'
token: ${{ steps.generate-token.outputs.token }}