add print-repo-name action

This commit is contained in:
2025-04-08 10:14:13 -04:00
parent 7e7c627c11
commit 5f5edcf339
2 changed files with 8 additions and 0 deletions

View File

@@ -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 }}"