From 6773c079db1a0e5e4cd75452aa4d0d32fa275885 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Wed, 15 Feb 2023 18:57:16 -0600 Subject: [PATCH] Drop `Push Validation` workflow Remove `push-validation.yml` workflow file. This in turn removes the dependency on the imported (upstream) `quick-validation.yml` workflow file. Linting functionality previously relied upon is already supplied by separate CI matrix managed workflow jobs. refs atc0005/shared-project-resources#63 refs atc0005/go-ci#847 --- .github/workflows/push-validation.yml | 28 --------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/push-validation.yml diff --git a/.github/workflows/push-validation.yml b/.github/workflows/push-validation.yml deleted file mode 100644 index 2ef56a72..00000000 --- a/.github/workflows/push-validation.yml +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2022 Adam Chalkley -# -# https://github.com/atc0005/brick -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: Push Validation - -# Run jobs when someone pushes to a repository branch. This workflow is -# intended to provide quick validation of content changes for Pull Requests -# (new, updated). -on: - push: - -jobs: - quick_validation: - name: Quick - uses: atc0005/shared-project-resources/.github/workflows/quick-validation.yml@master