From 11cacdfb6965002d6a7f106b27cedc347eb38cb2 Mon Sep 17 00:00:00 2001 From: Todd Burner Date: Wed, 22 Oct 2025 10:32:11 -0400 Subject: [PATCH] deleted workflow to be readded --- ...AndroidDeveloperVerificationOnboarding.yml | 73 ------------------- 1 file changed, 73 deletions(-) delete mode 100644 .github/workflows/Build_AndroidDeveloperVerificationOnboarding.yml diff --git a/.github/workflows/Build_AndroidDeveloperVerificationOnboarding.yml b/.github/workflows/Build_AndroidDeveloperVerificationOnboarding.yml deleted file mode 100644 index b495213..0000000 --- a/.github/workflows/Build_AndroidDeveloperVerificationOnboarding.yml +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 2025 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: Build AndroidDeveloperVerificationOnboarding - -on: - push: - branches: [ '*' ] - pull_request: - branches: [ '*' ] - merge_group: - types: [checks_requested] - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - changes: - runs-on: ubuntu-latest - outputs: - sample: ${{ steps.filter.outputs.sample }} - steps: - - uses: actions/checkout@v4 - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3 - id: filter - with: - filters: | - sample: - - 'AndroidDeveloperVerificationOnboarding/**' - - '.github/workflows/Build_AndroidDeveloperVerificationOnboarding.yml' - - build: - name: Build AndroidDeveloperVerificationOnboarding - needs: changes - if: ${{ needs.changes.outputs.sample == 'true' }} - runs-on: ubuntu-latest - timeout-minutes: 30 - - defaults: - run: - working-directory: AndroidDeveloperVerificationOnboarding - - steps: - - uses: actions/checkout@v4 - with: - token: ${{ secrets.PAT || github.token }} - - - name: Set up Java - uses: actions/setup-java@v4 - with: - distribution: 'zulu' - java-version: '17' - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@v4 - - - name: Make gradlew executable - run: chmod +x ./gradlew - - - name: Build All - run: ./gradlew build --stacktrace