Skip to content

Enhancement: Show messages #3

Enhancement: Show messages

Enhancement: Show messages #3

Workflow file for this run

# https://docs.github.com/en/actions
name: "Command"
on: # yamllint disable-line rule:truthy
pull_request: null
push:
branches:
- "main"
jobs:
messages:
name: "Messages"
runs-on: "ubuntu-latest"
timeout-minutes: 5
steps:
- name: "Echo error"
run: |
echo "::error file=src/Example.php,line=6,endLine=6,title=Oh::Some error here"
- name: "Echo notice"
run: |
echo "::notice file=src/Example.php,line=6,endLine=6,title=Oh::Some notice here"
- name: "Echo warning"
run: |
echo "::warning file=src/Example.php,line=6,endLine=6,title=Oh::Some warning here"