From 2a3e248e378fa4bf3c5609283aa69c01748b2206 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Thu, 19 Oct 2023 11:05:36 -0400 Subject: [PATCH] Move callable workflows into a new directory. --- .../test-core-build-process.yml} | 0 .../test-gutenberg-build-process.yml} | 0 .github/workflows/test-build-processes.yml | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{test-core-build-process-run.yml => callable/test-core-build-process.yml} (100%) rename .github/workflows/{test-gutenberg-build-process-run.yml => callable/test-gutenberg-build-process.yml} (100%) diff --git a/.github/workflows/test-core-build-process-run.yml b/.github/workflows/callable/test-core-build-process.yml similarity index 100% rename from .github/workflows/test-core-build-process-run.yml rename to .github/workflows/callable/test-core-build-process.yml diff --git a/.github/workflows/test-gutenberg-build-process-run.yml b/.github/workflows/callable/test-gutenberg-build-process.yml similarity index 100% rename from .github/workflows/test-gutenberg-build-process-run.yml rename to .github/workflows/callable/test-gutenberg-build-process.yml diff --git a/.github/workflows/test-build-processes.yml b/.github/workflows/test-build-processes.yml index 588649290d10a..a1f34c40996b4 100644 --- a/.github/workflows/test-build-processes.yml +++ b/.github/workflows/test-build-processes.yml @@ -41,7 +41,7 @@ jobs: # Creates a job to test the WordPress Core build process on multiple operating systems. test-core-build-process: name: Core running from ${{ matrix.directory }} - uses: desrosj/wordpress-develop/.github/workflows/test-core-build-process-run.yml@combine/npm-testing + uses: desrosj/wordpress-develop/.github/workflows/callable/test-core-build-process.yml@combine/npm-testing permissions: contents: read if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} @@ -64,7 +64,7 @@ jobs: # See https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability. test-core-build-process-macos: name: Core running from ${{ matrix.directory }} - uses: desrosj/wordpress-develop/.github/workflows/test-core-build-process-run.yml@combine/npm-testing + uses: desrosj/wordpress-develop/.github/workflows/callable/test-core-build-process.yml@combine/npm-testing permissions: contents: read if: ${{ github.repository == 'WordPress/wordpress-develop' }} @@ -80,7 +80,7 @@ jobs: # Creates a job to test the Gutenberg plugin build process on multiple operating systems. test-gutenberg-build-process: name: Gutenberg running from ${{ matrix.directory }} - uses: desrosj/wordpress-develop/.github/workflows/test-gutenberg-build-process-run.yml@combine/npm-testing + uses: desrosj/wordpress-develop/.github/workflows/callable/test-gutenberg-build-process.yml@combine/npm-testing permissions: contents: read if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} @@ -103,7 +103,7 @@ jobs: # See https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability. test-gutenberg-build-process-macos: name: Gutenberg running from ${{ matrix.directory }} - uses: desrosj/wordpress-develop/.github/workflows/test-gutenberg-build-process-run.yml@combine/npm-testing + uses: desrosj/wordpress-develop/.github/workflows/callable/test-gutenberg-build-process.yml@combine/npm-testing permissions: contents: read if: ${{ github.repository == 'WordPress/wordpress-develop' }}