Skip to content

.github/workflows/buildchecker.yml #18432

.github/workflows/buildchecker.yml

.github/workflows/buildchecker.yml #18432

Workflow file for this run

# See dev/buildchecker/README.md
name: buildchecker
on:
schedule:
- cron: '*/15 * * * *'
workflow_dispatch:
jobs:
run:
if: github.repository == 'sourcegraph/sourcegraph'
runs-on: ubuntu-latest
# secrets for this workflow are configured in the 'autobuildsherrif' environment.
# 'autobuildsherrif' was the original name of the 'buildchecker' tool - GitHub does
# not provide a simple way to do a rename, so we leave it as is for now.
environment: autobuildsherrif
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with: { go-version: '1.22' }
- run: ./dev/buildchecker/run-check.sh
env:
GITHUB_TOKEN: ${{ secrets.AUTOBUILDSHERRIF_GITHUB_TOKEN }}
BUILDKITE_TOKEN: ${{ secrets.AUTOBUILDSHERRIF_BUILDKITE_TOKEN }}
SLACK_ANNOUNCE_WEBHOOK: ${{ secrets.AUTOBUILDSHERRIF_SLACK_WEBHOOK }}
SLACK_DEBUG_WEBHOOK: ${{ secrets.AUTOBUILDSHERRIF_SLACK_DEBUG_WEBHOOK }}
SLACK_TOKEN: ${{ secrets.AUTOBUILDSHERRIF_SLACK_TOKEN }}
report_failure:
needs: run
if: ${{ failure() }}
uses: sourcegraph/sourcegraph/.github/workflows/report-job-failure.yml@main

Check failure on line 33 in .github/workflows/buildchecker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/buildchecker.yml

Invalid workflow file

error parsing called workflow ".github/workflows/buildchecker.yml" -> "sourcegraph/sourcegraph/.github/workflows/report-job-failure.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets: inherit