Skip to content

Commit

Permalink
Enhancement: Show messages
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 21, 2023
1 parent bbe3b29 commit 2116a16
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/command.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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,col=5,line=18,endLine=20,title=Oh::Some notice here"
- name: "Echo warning"
run: |
echo "::warning file=src/Example.php,col=1,line=22,endLine=25,title=Oh::Some warning here"

0 comments on commit 2116a16

Please sign in to comment.