Add missing Deployment field to workflow_job event type #3148
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
on: [push, pull_request] | |
name: linter | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.x | |
cache-dependency-path: "**/go.sum" | |
- run: script/lint.sh | |
env: | |
CHECK_GITHUB_OPENAPI: 1 | |
GITHUB_TOKEN: ${{ github.token }} |