File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
content/actions/get-started Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff 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 }}."
You can’t perform that action at this time.
0 commit comments