Skip to content

Commit 6933714

Browse files
authored
Added run keyword to example file triggering-a-workflow.md (#36061)
1 parent 061b186 commit 6933714

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: content/actions/writing-workflows/choosing-when-your-workflow-runs/triggering-a-workflow.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -294,15 +294,17 @@ jobs:
294294
runs-on: ubuntu-latest
295295
steps:
296296
- name: build
297-
echo 'building'
297+
run: |
298+
echo 'building'
298299
299300
publish:
300301
needs: [build]
301302
runs-on: ubuntu-latest
302303
environment: production
303304
steps:
304305
- name: publish
305-
echo 'publishing'
306+
run: |
307+
echo 'publishing'
306308
```
307309

308310
> [!NOTE]

0 commit comments

Comments
 (0)