Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
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".
  • Loading branch information
nikhilmulinti committed Dec 18, 2023
1 parent bf5b0de commit f100ad4
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -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
Explore-GitHub-Actions:
runs-on: arc-runner-set
steps:
- run: echo "🎉 This job uses runner scale set runners!"

0 comments on commit f100ad4

Please sign in to comment.