File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments