We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2faab7 commit 8b50fafCopy full SHA for 8b50faf
.github/workflows/runner-self-hosted.yml
@@ -0,0 +1,17 @@
1
+# If you don't create a self-hosted runner you will see:
2
+# Waiting for a runner to pick up this job...
3
+name: Self-hosted Runner Workflow
4
+
5
+on:
6
+ push:
7
+ branches:
8
+ - main
9
10
+jobs:
11
+ example-job:
12
+ runs-on: self-hosted
13
+ steps:
14
+ - name: Check out repository
15
+ uses: actions/checkout@v3
16
+ - name: Run a one-line script
17
+ run: echo "Hello from a self-hosted runner!"
0 commit comments