From 5f5edcf3391d112ef52e75c825fdc670247dd046 Mon Sep 17 00:00:00 2001 From: Timothy M Preble Date: Tue, 8 Apr 2025 10:14:13 -0400 Subject: [PATCH] add print-repo-name action --- .gitea/actions/print-repo-name/action.yml | 8 ++++++++ .gitea/workflows/build.yaml | 0 2 files changed, 8 insertions(+) create mode 100644 .gitea/actions/print-repo-name/action.yml create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/actions/print-repo-name/action.yml b/.gitea/actions/print-repo-name/action.yml new file mode 100644 index 0000000..30e3f9f --- /dev/null +++ b/.gitea/actions/print-repo-name/action.yml @@ -0,0 +1,8 @@ +name: "Print Repository Name" +description: "Prints the name of the current repository" +runs: + using: "composite" # Defines this as a composite action + steps: + - name: Print repo name + shell: bash + run: echo "Repository Name: ${{ github.repository }}" \ No newline at end of file diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..e69de29