Skip to content

Commit c4bd940

Browse files
author
chadmac2992-crypto
authored
Update quickstart.md
1 parent 4977344 commit c4bd940

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

content/actions/get-started/quickstart.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,21 @@ The example workflow you just added is triggered each time code is pushed to the
115115
## Next steps
116116

117117
{% data reusables.actions.onboarding-next-steps %}
118+
name: GitHub Actions Demo
119+
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
120+
on: [push]
121+
jobs:
122+
Explore-GitHub-Actions:
123+
runs-on: ubuntu-latest
124+
steps:
125+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
126+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
127+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
128+
- name: Check out repository code
129+
uses: actions/checkout@v5
130+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
131+
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
132+
- name: List files in the repository
133+
run: |
134+
ls ${{ github.workspace }}
135+
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)