Skip to content

Commit ead284e

Browse files
authored
Create staff.yml
1 parent 797e1b3 commit ead284e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/staff.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This is a basic workflow that is manually triggered
2+
3+
name: How Well Is The Staff Working?
4+
5+
# Controls when the action will run. Workflow runs when manually triggered using the UI
6+
# or API.
7+
on:
8+
workflow_dispatch:
9+
# Inputs the workflow accepts.
10+
11+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12+
jobs:
13+
# This workflow contains a single job called "changestatus"
14+
changestatus:
15+
# The type of runner that the job will run on
16+
runs-on: ubuntu-latest
17+
18+
# Steps represent a sequence of tasks that will be executed as part of the job
19+
steps:
20+
# Runs a single command using the runners shell
21+
- name: Send greeting
22+
run: echo "YAY ITS PASSING"
23+
24+
# This workflow contains a single job called "final"
25+
final:
26+
# The type of runner that the job will run on
27+
runs-on: ubuntu-latest
28+
29+
# Steps represent a sequence of tasks that will be executed as part of the job
30+
steps:
31+
# Runs a single command using the runners shell
32+
- name: Final Steps
33+
run: echo "final"

0 commit comments

Comments
 (0)