From c76fd03a58436a7cc275e91fcb465ddf8d633bea Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 23 May 2024 11:12:13 +0100 Subject: [PATCH] Rename `*triage*` to `*shared*` This shared configuration is no longer just triage so let's update the naming accordingly. --- .../sync/{triage-config.rb => shared-config.rb} | 0 ...nc-triage-config.yml => sync-shared-config.yml} | 14 +++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) rename .github/actions/sync/{triage-config.rb => shared-config.rb} (100%) rename .github/workflows/{sync-triage-config.yml => sync-shared-config.yml} (83%) diff --git a/.github/actions/sync/triage-config.rb b/.github/actions/sync/shared-config.rb similarity index 100% rename from .github/actions/sync/triage-config.rb rename to .github/actions/sync/shared-config.rb diff --git a/.github/workflows/sync-triage-config.yml b/.github/workflows/sync-shared-config.yml similarity index 83% rename from .github/workflows/sync-triage-config.yml rename to .github/workflows/sync-shared-config.yml index 4582291e..3cad9b46 100644 --- a/.github/workflows/sync-triage-config.yml +++ b/.github/workflows/sync-shared-config.yml @@ -1,4 +1,4 @@ -name: Sync triage configurations +name: Sync shared configurations on: push: @@ -9,11 +9,11 @@ permissions: contents: read concurrency: - group: sync-triage-config + group: sync-shared-config cancel-in-progress: true jobs: - sync-triage-config: + sync-shared-config: if: github.repository == 'Homebrew/.github' runs-on: ubuntu-latest strategy: @@ -64,7 +64,7 @@ jobs: id: detect_changes env: HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }} - run: ./.github/actions/sync/triage-config.rb 'vendor/${{ matrix.repo }}' '${{ matrix.repo }}' 'sync-triage-config' + run: ./.github/actions/sync/shared-config.rb 'vendor/${{ matrix.repo }}' '${{ matrix.repo }}' 'sync-shared-config' - name: Create pull request if: ${{ steps.detect_changes.outputs.pull_request == 'true' }} @@ -72,9 +72,9 @@ jobs: with: path: vendor/${{ matrix.repo }} token: ${{ secrets.HOMEBREW_DOTGITHUB_WORKFLOW_TOKEN }} - branch: sync-triage-config - title: Synchronize triage configuration + branch: sync-shared-config + title: Synchronize shared configuration body: > This pull request was created automatically by the - [`sync-triage-config`](https://github.com/Homebrew/.github/blob/HEAD/.github/workflows/sync-triage-config.yml) + [`sync-shared-config`](https://github.com/Homebrew/.github/blob/HEAD/.github/workflows/sync-shared-config.yml) workflow.