Update test.yml

This commit is contained in:
Kamil Chodoła
2023-04-26 20:09:48 +02:00
committed by GitHub
parent a5d2ba6225
commit c321328360

View File

@@ -26,7 +26,7 @@ jobs:
with: with:
workflow: to_be_triggered.yml workflow: to_be_triggered.yml
token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }} token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }}
ref: main ref: "${{ inputs.ref || github.ref }}"
- name: Wait for the triggered workflow to complete - name: Wait for the triggered workflow to complete
run: | run: |
@@ -37,5 +37,5 @@ jobs:
export MAX_WAIT_MINUTES="3" export MAX_WAIT_MINUTES="3"
export ORG_NAME="kamilchodola" export ORG_NAME="kamilchodola"
export REPO_NAME="wait-for-workflow-action" export REPO_NAME="wait-for-workflow-action"
export REF="${{ inputs.ref }}" export REF="${{ inputs.ref || github.ref }}"
./scripts/wait-for-workflow.sh ./scripts/wait-for-workflow.sh