mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 10:25:08 +00:00
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.
29 lines
940 B
Markdown
29 lines
940 B
Markdown
# Partial Variables
|
|
|
|
## Table of Contents
|
|
|
|
- [Partial Variables](#partial-variables)
|
|
- [Table of Contents](#table-of-contents)
|
|
- [GITHUB\_REPOSITORY\_OWNER\_PART](#github_repository_owner_part)
|
|
- [GITHUB\_REPOSITORY\_NAME\_PART](#github_repository_name_part)
|
|
|
|
## 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 |
|