From c7dbc963246a7a971d973dda8158410dfd2cba4e Mon Sep 17 00:00:00 2001 From: Sagar Choudhary <166942461+Sagar1602@users.noreply.github.com> Date: Fri, 22 May 2026 14:59:25 +0530 Subject: [PATCH 1/6] Create workflows --- .github/workflows | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows diff --git a/.github/workflows b/.github/workflows new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/workflows @@ -0,0 +1 @@ + From 63103c11dc289e28c243e78e0cabc8bc10714204 Mon Sep 17 00:00:00 2001 From: Sagar Choudhary <166942461+Sagar1602@users.noreply.github.com> Date: Fri, 22 May 2026 15:01:40 +0530 Subject: [PATCH 2/6] Delete .github directory --- .github/workflows | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/workflows diff --git a/.github/workflows b/.github/workflows deleted file mode 100644 index 8b13789..0000000 --- a/.github/workflows +++ /dev/null @@ -1 +0,0 @@ - From 9b75bb76355dcb2f6ff4d54e8bd8ebf83feab751 Mon Sep 17 00:00:00 2001 From: Sagar Choudhary <166942461+Sagar1602@users.noreply.github.com> Date: Fri, 22 May 2026 15:02:28 +0530 Subject: [PATCH 3/6] Create github-actions-demo.yml --- .github/workspaces/github-actions-demo.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workspaces/github-actions-demo.yml diff --git a/.github/workspaces/github-actions-demo.yml b/.github/workspaces/github-actions-demo.yml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/workspaces/github-actions-demo.yml @@ -0,0 +1 @@ + From fc9c3f0e30674bd4818c19b58197bff059d2d260 Mon Sep 17 00:00:00 2001 From: Sagar Choudhary <166942461+Sagar1602@users.noreply.github.com> Date: Fri, 22 May 2026 15:02:54 +0530 Subject: [PATCH 4/6] Delete .github/workspaces directory --- .github/workspaces/github-actions-demo.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/workspaces/github-actions-demo.yml diff --git a/.github/workspaces/github-actions-demo.yml b/.github/workspaces/github-actions-demo.yml deleted file mode 100644 index 8b13789..0000000 --- a/.github/workspaces/github-actions-demo.yml +++ /dev/null @@ -1 +0,0 @@ - From 44e569fe3b59efaf80e063eeae437e99caa87a9b Mon Sep 17 00:00:00 2001 From: Sagar Choudhary <166942461+Sagar1602@users.noreply.github.com> Date: Fri, 22 May 2026 15:03:18 +0530 Subject: [PATCH 5/6] Create github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/workflows/github-actions-demo.yml @@ -0,0 +1 @@ + From 2041dda9fbab5d86caaa9925b9d2532800640517 Mon Sep 17 00:00:00 2001 From: Sagar Choudhary <166942461+Sagar1602@users.noreply.github.com> Date: Fri, 22 May 2026 15:05:21 +0530 Subject: [PATCH 6/6] Add GitHub Actions demo workflow --- .github/workflows/github-actions-demo.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 8b13789..5c0dd0c 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -1 +1,19 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v6 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}."