@@ -22,7 +22,9 @@ These examples use only tools and actions from GitHub.
2222- Installs ` requirements.txt ` and runs a simple test
2323- Includes ` dependabot.yml ` to automatically check for package updates
2424
25- See the [ workflow] ( .github/workflows/basic.yml ) and [ dependabot] ( .github/dependabot.yml ) .
25+ View [ Workflow] ( .github/workflows/basic.yml )
26+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/basic.yml )
27+ View [ Dependabot] ( .github/dependabot.yml )
2628
2729</details >
2830
@@ -45,7 +47,8 @@ You may also get an unexpected result depending on the event that triggered the
4547- Shows various ` github ` context properties that may or may not contain the branch name
4648- Sets branch name to the top level ` env ` so it can be accessed by the entire workflow
4749
48- See the [ workflow] ( .github/workflows/branch_name.yml ) .
50+ View [ Workflow] ( .github/workflows/branch_name.yml )
51+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/branch_name.yml )
4952
5053</details >
5154
@@ -59,7 +62,8 @@ See the [workflow](.github/workflows/branch_name.yml).
5962
6063- Uses ` actions/cache `
6164
62- See the [ workflow] ( .github/workflows/cache.yml ) .
65+ View [ Workflow] ( .github/workflows/cache.yml )
66+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/cache.yml )
6367
6468</details >
6569
@@ -71,7 +75,8 @@ See the [workflow](.github/workflows/cache.yml).
7175
7276<br />You can access various contexts about the workflow run, which can be helpful for debugging workflow errors or bugs. Be careful as it has the potential to output sensitive information.
7377
74- See the [ workflow] ( .github/workflows/context.yml ) .
78+ View [ Workflow] ( .github/workflows/context.yml )
79+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/context.yml )
7580
7681</details >
7782
@@ -87,11 +92,17 @@ They're also fairly self-contained, so any changes you make are isolated to the
8792
8893One quirk that can cause confusion is the fact that environment variables defined within a step aren't accessible until the next step.
8994
90- See the workflows:
91- - [ Reading] ( .github/workflows/env_var_read.yml )
92- - [ Writing] ( .github/workflows/env_var_write.yml )
93- - [ Passing] ( .github/workflows/env_var_pass.yml )
94- - [ System PATH] ( .github/workflows/env_var_path.yml )
95+ View Reading [ Workflow] ( .github/workflows/env_var_read.yml )
96+ View Reading [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/env_var_read.yml )
97+
98+ View Writing [ Workflow] ( .github/workflows/env_var_write.yml )
99+ View Writing [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/env_var_write.yml )
100+
101+ View Passing [ Workflow] ( .github/workflows/env_var_pass.yml )
102+ View Passing [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/env_var_pass.yml )
103+
104+ View System PATH [ Workflow] ( .github/workflows/env_var_path.yml )
105+ View System PATH [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/env_var_path.yml )
95106
96107</details >
97108
@@ -105,7 +116,8 @@ See the workflows:
105116
106117- Uses ` actions/github-script `
107118
108- See the [ workflow] ( .github/workflows/github_script.yml ) .
119+ View [ Workflow] ( .github/workflows/github_script.yml )
120+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/github_script.yml )
109121
110122</details >
111123
@@ -121,7 +133,8 @@ When a job finishes, the summaries for all steps in a job are grouped together i
121133
122134Job summaries are isolated between steps and each step is restricted to a maximum size of 1MB. A maximum of 20 job summaries from steps are displayed per job.
123135
124- See the [ workflow] ( .github/workflows/job_summary.yml ) .
136+ View [ Workflow] ( .github/workflows/job_summary.yml )
137+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/job_summary.yml )
125138
126139</details >
127140
@@ -133,7 +146,8 @@ See the [workflow](.github/workflows/job_summary.yml).
133146
134147<br />You can create ` notice ` , ` warning ` , and ` error ` annotations in your workflow logs. Optionally, they can be associated with a file and even a position within the file. Annotations also show up on the job summary page.
135148
136- See the [ workflow] ( .github/workflows/log_annotation.yml ) .
149+ View [ Workflow] ( .github/workflows/log_annotation.yml )
150+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/log_annotation.yml )
137151
138152</details >
139153
@@ -147,7 +161,8 @@ See the [workflow](.github/workflows/log_annotation.yml).
147161
148162- Uses ` actions/setup-node `
149163
150- See the [ workflow] ( .github/workflows/matrix.yml ) .
164+ View [ Workflow] ( .github/workflows/matrix.yml )
165+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/matrix.yml )
151166
152167</details >
153168
@@ -161,9 +176,11 @@ See the [workflow](.github/workflows/matrix.yml).
161176
162177Note: This will increase the number of runners used, so keep an eye on your usage to avoid billing surprises.
163178
164- See the workflows:
165- - [ Directory-level parallel testing] ( .github/workflows/parallel_dir.yml )
166- - [ File-level parallel testing] ( .github/workflows/parallel_file.yml )
179+ View Directory-level Parallelization [ Workflow] ( .github/workflows/parallel_dir.yml )
180+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/parallel_dir.yml )
181+
182+ View File-level Parallelization [ Workflow] ( .github/workflows/parallel_file.yml )
183+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/parallel_file.yml )
167184
168185</details >
169186
@@ -179,7 +196,8 @@ This trigger only receives events when the workflow file is on the default branc
179196
180197Also, if the event that triggers the workflow isn't ` workflow_dispatch ` the input values are empty/null. This is true even if you have default values defined.
181198
182- See the [ workflow] ( .github/workflows/workflow_input.yml ) .
199+ View [ Workflow] ( .github/workflows/workflow_input.yml )
200+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/workflow_input.yml )
183201
184202</details >
185203
@@ -197,7 +215,8 @@ These examples include tools and actions from 3rd parties.
197215
198216- Uses ` Homebrew/actions/setup-homebrew `
199217
200- See the [ workflow] ( .github/workflows/homebrew.yml ) .
218+ View [ Workflow] ( .github/workflows/homebrew.yml )
219+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/homebrew.yml )
201220
202221</details >
203222
@@ -211,7 +230,8 @@ See the [workflow](.github/workflows/homebrew.yml).
211230
212231- Uses ` jdx/mise-action `
213232
214- See the [ workflow] ( .github/workflows/mise.yml ) .
233+ View [ Workflow] ( .github/workflows/mise.yml )
234+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/mise.yml )
215235
216236</details >
217237
@@ -225,7 +245,8 @@ See the [workflow](.github/workflows/mise.yml).
225245
226246- Uses ` astral-sh/setup-uv `
227247
228- See the [ workflow] ( .github/workflows/uv.yml ) .
248+ View [ Workflow] ( .github/workflows/uv.yml )
249+ View [ Runs] ( https://github.com/chingc/tutorial-github-actions/actions/workflows/uv.yml )
229250
230251</details >
231252
0 commit comments