Skip to content

Commit faefa04

Browse files
committed
add log to what file is used
1 parent cb5ce31 commit faefa04

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/help-command.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Show Help for Commands
22

33
on:
4+
on:
5+
push:
6+
branches:
7+
- "**" # Trigger on all branches, including feature branches
48
issue_comment:
59
types: [created]
610
workflow_dispatch:
@@ -10,6 +14,13 @@ permissions:
1014
pull-requests: write
1115

1216
jobs:
17+
log-workflow-branch:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Identify Workflow Branch
21+
run:
22+
echo "Workflow branch ref: ${{ github.ref }}"
23+
1324
show-help:
1425
if: |
1526
github.event_name == 'workflow_dispatch' ||

0 commit comments

Comments
 (0)