add print-repo-name action
This commit is contained in:
8
.gitea/actions/print-repo-name/action.yml
Normal file
8
.gitea/actions/print-repo-name/action.yml
Normal 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 }}"
|
||||
Reference in New Issue
Block a user