Files
github-slug-action/docs/partial-variables.md
Romain Lespinasse aba9f8db6e feat: use GITHUB_REF_POINT as variable for the branch name (#149)
BREAKING CHANGE: Change the behavior of GITHUB_REF_NAME to match the default GitHub Action behavior,
BREAKING CHANGE: Introduce GITHUB_REF_POINT as a replacement for GITHUB_REF_NAME to match this GitHub Action behavior in v4.
2024-11-06 00:16:25 +01:00

940 B

Partial Variables

Table of Contents

GITHUB_REPOSITORY_OWNER_PART

Owner part of the environment variable GITHUB_REPOSITORY

GITHUB_REPOSITORY GITHUB_REPOSITORY_OWNER_PART
octocat/Hello-World octocat
rlespinasse/Hello-World.go rlespinasse
AnotherPerson/SomeRepository AnotherPerson

GITHUB_REPOSITORY_NAME_PART

Repository name part of the environment variable GITHUB_REPOSITORY

GITHUB_REPOSITORY GITHUB_REPOSITORY_NAME_PART
octocat/Hello-World Hello-World
rlespinasse/Hello-World.go Hello-World.go
AnotherPerson/SomeRepository SomeRepository