diff --git a/.github/workflows/label-issue.yml b/.github/workflows/label-issue.yml index 4854ed2..8204947 100644 --- a/.github/workflows/label-issue.yml +++ b/.github/workflows/label-issue.yml @@ -38,7 +38,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Hello world action step - uses: ./.github/workflows/add-label/ # Uses an action in the root directory + uses: ./github-action/ # Uses an action in the root directory id: hello with: who-to-greet: 'Mona the Octocat' diff --git a/.github/workflows/add-label/action.yml b/github-action/action.yml similarity index 100% rename from .github/workflows/add-label/action.yml rename to github-action/action.yml diff --git a/.github/workflows/add-label/index.js b/github-action/index.js similarity index 100% rename from .github/workflows/add-label/index.js rename to github-action/index.js