From bec812c6d91e180e8a04c6c672c4d6143fccb36d Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 17 Apr 2024 14:13:27 +0200 Subject: [PATCH] fix: action --- .github/workflows/label-issue.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/label-issue.yml b/.github/workflows/label-issue.yml index 0e1222b..37e69ed 100644 --- a/.github/workflows/label-issue.yml +++ b/.github/workflows/label-issue.yml @@ -33,9 +33,13 @@ jobs: runs-on: ubuntu-latest name: A job to say hello steps: + # To use this repository's private action, + # you must check out the repository + - name: Checkout + uses: actions/checkout@v4 - name: Hello world action step + uses: ./add-label/ # Uses an action in the root directory id: hello - uses: ./add-label/ with: who-to-greet: 'Mona the Octocat' # Use the output from the `hello` step