Skip to content

Commit c563b08

Browse files
Copilotlippytm
andcommitted
Fix grammar and improve documentation clarity
Co-authored-by: lippytm <65956507+lippytm@users.noreply.github.com>
1 parent 7d3a8e9 commit c563b08

1 file changed

Lines changed: 16 additions & 15 deletions

File tree

REPOSITORY_NETWORK.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This document describes the network of connected repositories and how they inter
4141

4242
### 3. ⚙️ Time-Machines-Builders-
4343
- **URL:** https://github.com/lippytm/Time-Machines-Builders-
44-
- **Purpose:** AI automation in Earn while you Learn to Become a Better Programmer and Blockchain Developer
44+
- **Purpose:** AI automation - Earn while you Learn to Become a Better Programmer and Blockchain Developer
4545
- **Language:** Not specified
4646
- **Stars:** 1
4747
- **Default Branch:** main
@@ -115,25 +115,26 @@ To enable actual cross-repository dispatch capabilities:
115115

116116
3. **Enable Repository Dispatch:**
117117
- Edit `.github/workflows/cross-repo-sync.yml`
118-
- Uncomment lines 37-43 (the Repository Dispatch step)
118+
- Locate and uncomment the "Repository Dispatch" step
119119
- Commit and push the changes
120120

121121
4. **Set Up Receiving Repositories:**
122122
Each connected repository should add a workflow to receive events:
123123
```yaml
124-
name: Handle Remote Trigger
125-
on:
126-
repository_dispatch:
127-
types: [transparency-bots-update]
128-
129-
jobs:
130-
handle-update:
131-
runs-on: ubuntu-latest
132-
steps:
133-
- name: Log update
134-
run: |
135-
echo "Triggered by: ${{ github.event.client_payload.ref }}"
136-
echo "From commit: ${{ github.event.client_payload.sha }}"
124+
name: Handle Remote Trigger
125+
126+
on:
127+
repository_dispatch:
128+
types: [transparency-bots-update]
129+
130+
jobs:
131+
handle-update:
132+
runs-on: ubuntu-latest
133+
steps:
134+
- name: Log update
135+
run: |
136+
echo "Triggered by: ${{ github.event.client_payload.ref }}"
137+
echo "From commit: ${{ github.event.client_payload.sha }}"
137138
```
138139
139140
## Manual Workflow Execution

0 commit comments

Comments
 (0)