You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/actions/sharing-automations/creating-actions/creating-a-composite-action.md
+68
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,9 @@ Once you complete this project, you should understand how to build your own comp
30
30
Composite actions allow you to collect a series of workflow job steps into a single action which you can then run as a single job step in multiple workflows. Reusable workflows provide another way of avoiding duplication, by allowing you to run a complete workflow from within other workflows. For more information, see [AUTOTITLE](/actions/using-workflows/avoiding-duplication).
31
31
32
32
## Prerequisites
33
+
>
34
+
> [!NOTE]
35
+
> This example explains how to create a composite action within a separate repository. However, it is possible to create a composite action within the same repository. For more information, see [AUTOTITLE](/actions/creating-actions/creating-a-composite-action#creating-a-composite-action-within-the-same-repository).
33
36
34
37
Before you begin, you'll create a repository on {% data variables.product.github %}.
35
38
@@ -178,6 +181,71 @@ jobs:
178
181
179
182
From your repository, click the **Actions** tab, and select the latest workflow run. The output should include: "Hello Mona the Octocat", the result of the "Goodbye" script, and a random number.
180
183
184
+
## Creating a composite action within the same repository
185
+
186
+
1. Create a new subfolder called `hello-world-composite-action`, this can be placed in any subfolder within the repository. However, it is recommended that this be placed in the `.github/actions` subfolder to make organization easier.
187
+
1. In the `hello-world-composite-action` folder, do the same steps to create the `goodbye.sh` script
188
+
189
+
```shell copy
190
+
echo "echo Goodbye" > goodbye.sh
191
+
```
192
+
193
+
{% linux %}
194
+
195
+
{% data reusables.actions.composite-actions-executable-linux-mac %}
196
+
197
+
{% endlinux %}
198
+
{% mac %}
199
+
200
+
{% data reusables.actions.composite-actions-executable-linux-mac %}
201
+
202
+
{% endmac %}
203
+
{% windows %}
204
+
205
+
```shell copy
206
+
git add --chmod=+x -- goodbye.sh
207
+
```
208
+
209
+
{% endwindows %}
210
+
{% linux %}
211
+
212
+
{% data reusables.actions.composite-actions-commit-file-linux-mac %}
213
+
214
+
{% endlinux %}
215
+
{% mac %}
216
+
217
+
{% data reusables.actions.composite-actions-commit-file-linux-mac %}
218
+
{% endmac %}
219
+
{% windows %}
220
+
221
+
```shell copy
222
+
git commit -m "Add goodbye script"
223
+
git push
224
+
```
225
+
226
+
{% endwindows %}
227
+
1. In the `hello-world-composite-action` folder, create the `action.yml` file based on the steps in [AUTOTITLE](/actions/creating-actions/creating-a-composite-action#creating-an-action-metadata-file).
228
+
1. When using the action, use the relative path to the folder where the composite action's `action.yml` file is located in the `uses` key. The below example assumes it is in the `.github/actions/hello-world-composite-action` folder.
229
+
230
+
```yaml copy
231
+
on: [push]
232
+
233
+
jobs:
234
+
hello_world_job:
235
+
runs-on: ubuntu-latest
236
+
name: A job to say hello
237
+
steps:
238
+
- uses: {% data reusables.actions.action-checkout %}
0 commit comments