Skip to content

Commit 7326c96

Browse files
authored
dev: disable check-generated job (#5742)
1 parent f1e4d89 commit 7326c96

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

Diff for: .github/workflows/pr-checks.yml

+15-14
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,22 @@ jobs:
2727
git diff --exit-code go.mod
2828
git diff --exit-code go.sum
2929
30+
# This check is disabled because of GitHub API instability: 504 Gateway Timeout.
3031
# Checks: GitHub action assets
31-
check-generated:
32-
runs-on: ubuntu-latest
33-
steps:
34-
- uses: actions/checkout@v4
35-
with:
36-
fetch-depth: 0
37-
- uses: actions/setup-go@v5
38-
with:
39-
go-version: ${{ env.GO_VERSION }}
40-
- name: Check generated files are up-to-date
41-
run: make fast_check_generated
42-
env:
43-
# needed for github-action-config.json generation
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
# check-generated:
33+
# runs-on: ubuntu-latest
34+
# steps:
35+
# - uses: actions/checkout@v4
36+
# with:
37+
# fetch-depth: 0
38+
# - uses: actions/setup-go@v5
39+
# with:
40+
# go-version: ${{ env.GO_VERSION }}
41+
# - name: Check generated files are up-to-date
42+
# run: make fast_check_generated
43+
# env:
44+
# # needed for github-action-config.json generation
45+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4546

4647
check-local-install-script:
4748
name: Installation script (local)

0 commit comments

Comments
 (0)