From 331760b44ae35d84ac8b9f8d3ab48d9a49e719dd Mon Sep 17 00:00:00 2001 From: Kersten Kriegbaum Date: Mon, 9 Jun 2025 22:33:06 +0200 Subject: [PATCH] try pipeline withour checkout --- .../checkout-without-checkout-action.yml | 23 +++++++++++++++++++ .idea/.gitignore | 8 +++++++ .idea/checkstyle-idea.xml | 15 ++++++++++++ .idea/misc.xml | 6 +++++ .idea/modules.xml | 8 +++++++ .idea/palantir-java-format.xml | 6 +++++ .idea/test-action.iml | 9 ++++++++ .idea/vcs.xml | 6 +++++ 8 files changed, 81 insertions(+) create mode 100644 .forgejo/workflows/checkout-without-checkout-action.yml create mode 100644 .idea/.gitignore create mode 100644 .idea/checkstyle-idea.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/palantir-java-format.xml create mode 100644 .idea/test-action.iml create mode 100644 .idea/vcs.xml diff --git a/.forgejo/workflows/checkout-without-checkout-action.yml b/.forgejo/workflows/checkout-without-checkout-action.yml new file mode 100644 index 0000000..70b4a04 --- /dev/null +++ b/.forgejo/workflows/checkout-without-checkout-action.yml @@ -0,0 +1,23 @@ +name: Super Simple Action Test mit run-Befehlen + +on: + workflow_dispatch: + +jobs: + test_manual_checkout: + name: Test manueller Checkout mit Git + runs-on: docker + + steps: + - name: Checkout privates Repo von git.kriegbaum.io + run: | + git config --global url."https://badmomber:${{ secrets.KRIEGBUAM_IO_TOKEN }}@git.kriegbaum.io".insteadOf "https://git.kriegbaum.io" + + git clone --branch main --depth 1 https://git.kriegbaum.io/badmomber/opencqrs.git . + + echo "Repository wurde erfolgreich in das Arbeitsverzeichnis geklont." + + - name: Inhalt des Arbeitsverzeichnisses anzeigen + run: | + echo "Folgende Dateien befinden sich jetzt im Workspace:" + ls -la \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml new file mode 100644 index 0000000..f1ca92b --- /dev/null +++ b/.idea/checkstyle-idea.xml @@ -0,0 +1,15 @@ + + + + 10.20.1 + JavaOnly + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8780e86 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..4059643 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/palantir-java-format.xml b/.idea/palantir-java-format.xml new file mode 100644 index 0000000..cbcc1cb --- /dev/null +++ b/.idea/palantir-java-format.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/test-action.iml b/.idea/test-action.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/test-action.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file