From 04b1b4e56560c1772232dc894465028f37511a66 Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 17 Apr 2024 18:34:10 +0200 Subject: [PATCH] feat: github aciton --- .github/workflows/label-issue.yml | 2 +- {.github/workflows/add-label => github-action}/action.yml | 0 {.github/workflows/add-label => github-action}/index.js | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {.github/workflows/add-label => github-action}/action.yml (100%) rename {.github/workflows/add-label => github-action}/index.js (100%) 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