From f100ad4dc205bee7fc7abdfa573d64cfa2a27655 Mon Sep 17 00:00:00 2001 From: nikhilmulinti-egov Date: Mon, 18 Dec 2023 14:15:26 +0530 Subject: [PATCH] Update GitHub Actions workflow This commit updates the GitHub Actions workflow file to include a new job called "Explore-GitHub-Actions" that runs on an arc-runner-set. It also renames the existing job from "List Files" to "Actions Runner Controller Demo". --- .github/workflows/github-actions-demo.yml | 27 ++++++++++++++--------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index f019b5057fa..6f5d40c2aa0 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -1,17 +1,22 @@ -name: List Files +name: Actions Runner Controller Demo on: - push: - branches: - - githubactions-deploy + push: + branches: + - githubactions-deploy + workflow_dispatch: jobs: - list_files: - runs-on: ubuntu-latest + list_files: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v2 - steps: - - name: Checkout Repository - uses: actions/checkout@v2 + - name: List Files + run: ls -R - - name: List Files - run: ls -R \ No newline at end of file + Explore-GitHub-Actions: + runs-on: arc-runner-set + steps: + - run: echo "🎉 This job uses runner scale set runners!" \ No newline at end of file