chore: test md template #587
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: workflow commands | |
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
commands: | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- run: echo "action_fruit=strawberry" >> "$GITHUB_OUTPUT" | |
- run: echo "::debug::Set the Octocat variable" | |
- run: echo "::warning file=app.js,line=1,col=5::Missing semicolon" | |
- run: echo "::error file=app.js,line=10,col=15::Something went wrong" | |
- run: | | |
echo "::group::My title" | |
echo "Inside group" | |
echo "::endgroup::" | |
echo "::group::My next title" | |
echo "Inside group" | |
echo "::endgroup::" | |
- run: | | |
MY_NAME="Mona The Octocat" | |
echo "::add-mask::$MY_NAME" |