Skip to content

init

init #12

Workflow file for this run

name: Workflow Commands
on: [push]
jobs:
testing-wf-commands:
runs-on: ubuntu-latest
steps:
- name: Setting an error message
run: echo "::error::Missing semicolon"
- name: Setting a debug message with params
run: echo "::debug::Missing Semicolon"
- name: Setting an warning message with params
run: echo "::warning::Missing Semicolon"
- name: Setting an notice message with params
run: echo "::notice::Missing Semicolon"
- name: Group of logs
run: |
echo "::group::My group title"
echo "Inside group"
echo "::endgroup::"
- name: Masking a value
run: echo "::add-mask::Secret String"
- name: Echo a secret
run: echo "Secret String"