From 30f83b08eecabe17b7d1f53aaf0bb4d0cdd82256 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 4 Jul 2025 11:35:10 +0200 Subject: [PATCH] refactor(actions): simplify action path structure - Relocates action files to a flat directory structure - Updates references to the new paths for better organization --- action.yml | 2 +- {.gitea/actions/with-post-step => with-post-step}/action.yml | 0 {.gitea/actions/with-post-step => with-post-step}/main.js | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {.gitea/actions/with-post-step => with-post-step}/action.yml (100%) rename {.gitea/actions/with-post-step => with-post-step}/main.js (100%) diff --git a/action.yml b/action.yml index c92e07d..a20db4c 100644 --- a/action.yml +++ b/action.yml @@ -19,7 +19,7 @@ runs: steps: - id: detect name: Detect version change + queue post work - uses: ./.gitea/actions/with-post-step + uses: ./with-post-step with: key: AUTOCHANGELOG #################### MAIN #################### diff --git a/.gitea/actions/with-post-step/action.yml b/with-post-step/action.yml similarity index 100% rename from .gitea/actions/with-post-step/action.yml rename to with-post-step/action.yml diff --git a/.gitea/actions/with-post-step/main.js b/with-post-step/main.js similarity index 100% rename from .gitea/actions/with-post-step/main.js rename to with-post-step/main.js