Skip to content

Commit 40b7848

Browse files
Claude-InfoTechclaude
andcommitted
Fix workflow location: move notify-hub.yml to repository root
🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7483ad7 commit 40b7848

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/notify-hub.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Notify Hub of InfoTech CLI Docs Update
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'docs/**'
9+
10+
jobs:
11+
notify:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Repository Dispatch
15+
uses: peter-evans/repository-dispatch@v3
16+
with:
17+
token: ${{ secrets.PAT_TOKEN }}
18+
repository: info-tech-io/info-tech-io.github.io
19+
event-type: cli-docs-updated
20+
client-payload: |
21+
{
22+
"repository": "${{ github.repository }}",
23+
"ref": "${{ github.ref }}",
24+
"sha": "${{ github.sha }}"
25+
}

0 commit comments

Comments
 (0)