Skip to content

Commit a7498a3

Browse files
authored
Merge pull request #36768 from github/repo-sync
Repo sync
2 parents 988b82b + 4c7aebc commit a7498a3

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

content/actions/sharing-automations/creating-actions/creating-a-composite-action.md

+68
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ Once you complete this project, you should understand how to build your own comp
3030
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).
3131

3232
## 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).
3336
3437
Before you begin, you'll create a repository on {% data variables.product.github %}.
3538

@@ -178,6 +181,71 @@ jobs:
178181

179182
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.
180183

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 %}
239+
- id: foo
240+
uses: ./.github/actions/hello-world-composite-action
241+
with:
242+
who-to-greet: 'Mona the Octocat'
243+
- run: echo random-number "$RANDOM_NUMBER"
244+
shell: bash
245+
env:
246+
RANDOM_NUMBER: {% raw %}${{ steps.foo.outputs.random-number }}{% endraw %}
247+
```
248+
181249
## Example composite actions on {% data variables.product.github %}
182250

183251
You can find many examples of composite actions on {% data variables.product.github %}.

0 commit comments

Comments
 (0)