Skip to content

Commit 6d15f2e

Browse files
committed
Fix some things #20
1 parent b1631f1 commit 6d15f2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

actions/ci_connection/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ runs:
7070
# fromJSON parses the search string into an actual array
7171
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions#example-matching-an-array-of-strings
7272
73-
# Wait on 2nd+ attempt, if the retry label is set
73+
# Wait on 2+ retries, if the wait-on-retry label is set
74+
# Always wait, if the always-wait label is set
75+
# Always wait if the workflow was triggered manually, and the value was set
7476
contains(fromJSON(steps.get-labels.outputs.labels), inputs.should-wait-retry-tag) && github.run_attempt > 1 ||
75-
# Always wait, if the label is set
7677
contains(fromJSON(steps.get-labels.outputs.labels), inputs.should-wait-always-tag) ||
77-
# Always wait if the workflow was triggered manually, and the value was set
7878
contains(fromJSON('["yes", "Yes", "y", "1"]'), inputs.halt-dispatch-input)
7979
env:
8080
REPOSITORY: ${{ inputs.repository }}

0 commit comments

Comments
 (0)