8 lines
266 B
YAML
8 lines
266 B
YAML
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 }}" |