From df61ba3cb6122dc6978d3b065282fd238658110f Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:02:59 -0400 Subject: [PATCH] workflow dispatch --- .github/workflows/blank.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 413682f..702893c 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -11,33 +11,33 @@ jobs: - uses: actions/checkout@v4 - name: A env: - A: ${{ github.event_name == 'pull_request' }} + A: ${{ github.event_name == 'workflow_dispatch' }} run: | echo A: ${A} - name: B env: - B: ${{ github.event_name == 'pull_request' && 1 || 0 }} + B: ${{ github.event_name == 'workflow_dispatch' && 1 || 0 }} run: | echo B: ${B} - name: C env: - C: ${{ github.event_name == 'pull_request' && 0 || 1 }} + C: ${{ github.event_name == 'workflow_dispatch' && 0 || 1 }} run: | echo C: ${C} - name: D uses: ./ with: - skip-checkout: ${{ github.event_name == 'pull_request' }} + skip-checkout: ${{ github.event_name == 'workflow_dispatch' }} - name: E uses: ./ with: - skip-checkout: ${{ github.event_name == 'pull_request' && 1 || 0 }} + skip-checkout: ${{ github.event_name == 'workflow_dispatch' && 1 || 0 }} - name: F uses: ./ with: - skip-checkout: ${{ github.event_name == 'pull_request' && 0 || 1 }} + skip-checkout: ${{ github.event_name == 'workflow_dispatch' && 0 || 1 }} - name: G uses: ./ @@ -45,4 +45,4 @@ jobs: - name: H uses: ./ with: - skip-checkout: ${{ github.event_name == 'pull_request' && 1 || '' }} + skip-checkout: ${{ github.event_name == 'workflow_dispatch' && 1 || '' }}