Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kshitij katiyar patch 3 #11

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push, pull_request]

jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Show trigger event
run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Show runner environment
run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- name: Show branch and repository info
run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: Confirm repository clone
run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: Prepare workflow
run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: ls ${{ github.workspace }}
- name: Show job status
run: echo "🍏 This job's status is ${{ job.status }}."