From 822559f0dc86832ae37e0f854ab4d82df1328821 Mon Sep 17 00:00:00 2001 From: pq Date: Wed, 20 May 2026 15:28:33 -0700 Subject: [PATCH] [cleanup] remove stale presubmit template --- .github/workflows/presubmit.yaml | 2 -- .github/workflows/presubmit.yaml.template | 36 ----------------------- 2 files changed, 38 deletions(-) delete mode 100644 .github/workflows/presubmit.yaml.template diff --git a/.github/workflows/presubmit.yaml b/.github/workflows/presubmit.yaml index fb3327ad9f..44cae54f98 100644 --- a/.github/workflows/presubmit.yaml +++ b/.github/workflows/presubmit.yaml @@ -1,5 +1,3 @@ -# Do not edit; instead, modify presubmit.yaml.template, and run './bin/plugin generate'. - # Copyright 2020 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. diff --git a/.github/workflows/presubmit.yaml.template b/.github/workflows/presubmit.yaml.template deleted file mode 100644 index bdd32bff91..0000000000 --- a/.github/workflows/presubmit.yaml.template +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2020 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -name: presubmit -on: - pull_request: - push: - branches: - - main - workflow_dispatch: - -permissions: - contents: read - -jobs: - presubmit: - runs-on: ubuntu-latest - steps: - - name: checkout - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 - - name: build - run: ./tool/github.sh - checker: - runs-on: ubuntu-latest - strategy: - fail-fast: true - matrix: - bot: [CHECK_BOT, DART_BOT, UNIT_TEST_BOT, VERIFY_BOT] - steps: - - name: checkout - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 - - name: Linux ${{ matrix.bot }} - run: ./tool/github.sh - env: - BOT: ${{ matrix.bot }}