This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
Add guards against nil derefernce panics in job/task CLI commands #278
Workflow file for this run
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: Check gateway.yml for missing RPCs | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: [main] | |
jobs: | |
check-gateway-yml: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Check gateway.yml for missing RPCs | |
run: ./scripts/check-gateway-yml.sh | |
permissions: | |
contents: read |