From dfc9414c279237ddc93d39e016b57c1f81a82c20 Mon Sep 17 00:00:00 2001 From: Katie McLaughlin Date: Wed, 12 Mar 2025 10:51:58 +1100 Subject: [PATCH] remove workflow (migrated in #4004) --- .github/workflows/appengine-analytics.yaml | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/appengine-analytics.yaml diff --git a/.github/workflows/appengine-analytics.yaml b/.github/workflows/appengine-analytics.yaml deleted file mode 100644 index 5f54cba345..0000000000 --- a/.github/workflows/appengine-analytics.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 2023 Google LLC -# -# 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 -# -# http://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: appengine-analytics -on: - push: - branches: - - main - paths: - - 'appengine/analytics/**' - - '.github/workflows/appengine-analytics.yaml' - - '.github/workflows/test.yaml' - pull_request: - types: - - opened - - reopened - - synchronize - - labeled - paths: - - 'appengine/analytics/**' - - '.github/workflows/appengine-analytics.yaml' - - '.github/workflows/test.yaml' - schedule: - - cron: '0 0 * * 0' -jobs: - test: - permissions: - contents: 'read' - id-token: 'write' - if: github.event.action != 'labeled' || github.event.label.name == 'actions:force-run' - uses: ./.github/workflows/test.yaml - with: - name: 'appengine-analytics' - path: 'appengine/analytics' - flakybot: - permissions: - contents: 'read' - id-token: 'write' - if: github.event_name == 'schedule' && always() # always() submits logs even if tests fail - uses: ./.github/workflows/flakybot.yaml - needs: [test]