Skip to content

Commit

Permalink
commit self hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
omenking committed Apr 30, 2024
1 parent c47d066 commit 289412c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/runner-self-hosted.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# If you don't create a self-hosted runner you will see:
# Waiting for a runner to pick up this job...
name: Self-hosted Runner Workflow

on:
push:
branches:
- main

jobs:
example-job:
runs-on: self-hosted
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Run a one-line script
run: echo "Hello from a self-hosted runner!"

0 comments on commit 289412c

Please sign in to comment.