WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit c2e494d

Browse files
committed
fix typo
1 parent 18b551d commit c2e494d

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/compute-workflow-parameters.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,16 @@ on:
101101
jobs:
102102
manual_ref:
103103
if: inputs.ref != 'auto'
104-
run: |
105-
if [[ "${{ inputs.ref }}" != "" ]]; then
106-
echo "ref=${{ inputs.ref }}" >> $GITHUB_OUTPUT
107-
elif [[ "${{ github.repository }}" == "DataDog/system-tests" ]]; then
108-
echo "ref=" >> $GITHUB_OUTPUT
109-
else
110-
echo "ref=main" >> $GITHUB_OUTPUT
111-
fi
104+
runs-on: ubuntu-latest
105+
steps:
106+
- run: |
107+
if [[ "${{ inputs.ref }}" != "" ]]; then
108+
echo "ref=${{ inputs.ref }}" >> $GITHUB_OUTPUT
109+
elif [[ "${{ github.repository }}" == "DataDog/system-tests" ]]; then
110+
echo "ref=" >> $GITHUB_OUTPUT
111+
else
112+
echo "ref=main" >> $GITHUB_OUTPUT
113+
fi
112114
113115
auto_ref:
114116
if: inputs.ref == 'auto'

0 commit comments

Comments
 (0)