We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 515c209 commit 8f7729dCopy full SHA for 8f7729d
action.yml
@@ -159,3 +159,14 @@ runs:
159
cat matrix
160
echo "::$stopMarker::"
161
shell: bash
162
+
163
+ - name: Disable workflow commands
164
+ if: ${{ !cancelled() }}
165
+ run: |
166
+ echo '::warning:: This is a warning message, to demonstrate that commands are being processed.'
167
+ stopMarker=$(uuidgen)
168
+ echo "::stop-commands::$stopMarker"
169
+ echo '::warning:: This will NOT be rendered as a warning, because stop-commands has been invoked.'
170
+ echo "::$stopMarker::"
171
+ echo '::warning:: This is a warning again, because stop-commands has been turned off.'
172
+ shell: bash
0 commit comments