Skip to content

Commit ca0f5f4

Browse files
workflow commands example
1 parent 65b1848 commit ca0f5f4

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "Workflow Commands"
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
my-job:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: "group logging"
12+
run: |
13+
echo "::group::My Group Message"
14+
echo "Msg1"
15+
echo "::endgroup::"

0 commit comments

Comments
 (0)