From d7a36d9464c69717293cd0e381c543d025adc15b Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Thu, 16 May 2024 13:26:30 +1000 Subject: [PATCH] .github/workflows/sync-templates-and-ci-config.yml: remove workflow --- .../sync-templates-and-ci-config.yml | 65 ------------------- 1 file changed, 65 deletions(-) delete mode 100644 .github/workflows/sync-templates-and-ci-config.yml diff --git a/.github/workflows/sync-templates-and-ci-config.yml b/.github/workflows/sync-templates-and-ci-config.yml deleted file mode 100644 index 87c9d14776e..00000000000 --- a/.github/workflows/sync-templates-and-ci-config.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Sync templates and CI config. - -on: - push: - branches: - - debug-sync - - master - -concurrency: - group: sync-templates-and-ci-config - cancel-in-progress: true - -permissions: - contents: read - -jobs: - sync-templates-and-ci-config: - if: github.repository == 'Homebrew/homebrew-cask' - runs-on: ubuntu-latest - strategy: - matrix: - repo: - - Homebrew/homebrew-cask-fonts - steps: - - name: Clone main repository - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Clone secondary repository - uses: actions/checkout@v4 - with: - repository: ${{ matrix.repo }} - path: vendor/${{ matrix.repo }} - persist-credentials: false - - - name: Configure Git user - uses: Homebrew/actions/git-user-config@master - with: - username: BrewTestBot - - - name: Set up GPG commit signing - id: set-up-commit-signing - uses: Homebrew/actions/setup-commit-signing@master - with: - signing_key: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY }} - - - name: Detect changes - id: detect_changes - run: ./.github/actions/sync/templates.rb 'vendor/${{ matrix.repo }}' '${{ matrix.repo }}' 'sync-templates-and-ci-config' - env: - HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }} - - - name: Create pull request - uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e - with: - path: vendor/${{ matrix.repo }} - token: ${{ secrets.HOMEBREW_CASK_SYNC_TOKEN }} - branch: sync-templates-and-ci-config - title: Synchronize templates and CI configuration. - body: > - This pull request was created automatically by the - [`sync-templates-and-ci-config`](https://github.com/Homebrew/homebrew-cask/blob/master/.github/workflows/sync-templates-and-ci-config.yml) - workflow. - if: ${{ steps.detect_changes.outputs.pull_request == 'true' }}