branch-names/README.md

131 lines
4.9 KiB
Markdown
Raw Normal View History

2020-12-12 05:31:57 +08:00
branch-names
------------
2020-12-11 21:15:40 +08:00
2021-04-09 19:36:58 +08:00
[![CI](https://github.com/tj-actions/branch-names/workflows/CI/badge.svg)](https://github.com/tj-actions/branch-names/actions?query=workflow%3ACI) [![Update release version.](https://github.com/tj-actions/branch-names/actions/workflows/sync-release-version.yml/badge.svg)](https://github.com/tj-actions/branch-names/actions/workflows/sync-release-version.yml) <a href="https://github.com/search?q=tj-actions+branch-names+path%3A.github%2Fworkflows+language%3AYAML&type=code" target="_blank" title="Public workflows that use this action."><img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fapi-git-master.endbug.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3Dtj-actions%2Fbranch-names%26badge%3Dtrue" alt="Public workflows that use this action."></a>
2021-01-07 08:46:26 +08:00
2020-12-11 23:25:16 +08:00
Get branch information without the `/ref/*` prefix
2020-12-11 21:15:40 +08:00
2021-02-08 09:19:06 +08:00
## Outputs
2021-02-13 18:44:40 +08:00
| Output | type | Example | Description |
|:--------------------:|:------------:|:---------------------------:|:-----------------------------------------------------------------:|
| is_default | `boolean` | `true` *OR* `false` | Detects wheter the action is running on a default branch |
| current_branch | `string` | `main` *OR* `feature/test` | Always returns a valid branch name for a triggered workflow run. |
| base_ref_branch | `string` | `main` | The target branch of a pull request |
| head_ref_branch | `string` | `feature/test` | The source branch of a pull request |
| ref_branch | `string` | `1/merge` *OR* `main` | The branch that triggered the workflow run |
2021-04-24 18:41:16 +08:00
| tag | `string` | `v0.0.1` *OR* `0.0.1` | The tag that triggered the workflow run |
2021-02-08 09:19:06 +08:00
2021-02-08 09:19:41 +08:00
## Usage
2021-02-08 09:19:06 +08:00
2021-04-05 03:42:46 +08:00
```yaml
...
steps:
- uses: actions/checkout@v2
- name: Get branch names
id: branch-name
uses: tj-actions/branch-names@v2.2
```
## Examples
2020-12-11 21:15:40 +08:00
```yaml
...
steps:
- uses: actions/checkout@v2
2020-12-11 23:39:03 +08:00
- name: Get branch names
2021-02-13 04:02:53 +08:00
id: branch-name
2021-02-14 21:15:53 +08:00
uses: tj-actions/branch-names@v2.2
2021-02-14 21:19:07 +08:00
- name: Running on the default branch.
2021-02-16 02:19:33 +08:00
if: steps.branch-name.outputs.is_default == 'true'
2021-02-14 21:19:07 +08:00
run: |
2021-02-16 02:19:33 +08:00
echo "Running on default: ${{ steps.branch-name.outputs.current_branch }}"
# Outputs: "Running on default: main".
2021-02-14 21:19:07 +08:00
- name: Running on a pull request branch.
2021-02-16 02:19:33 +08:00
if: steps.branch-name.outputs.is_default == 'false'
2021-02-14 21:19:07 +08:00
run: |
2021-02-16 02:19:33 +08:00
echo "Running on pr: ${{ steps.branch-name.outputs.current_branch }}"
# Outputs: "Running on pr: feature/test".
2021-02-08 08:45:09 +08:00
- name: Current branch name
if: github.event_name == 'pull_request'
run: |
echo "${{ steps.branch-name.outputs.current_branch }}"
2021-02-09 06:12:17 +08:00
# Outputs: "feature/test" current PR branch.
2021-02-08 08:45:09 +08:00
- name: Current branch name
if: github.event_name == 'push'
run: |
echo "${{ steps.branch-name.outputs.current_branch }}"
2021-02-16 02:05:44 +08:00
# Outputs: "main" the branch that triggered the push event.
2021-02-08 08:45:09 +08:00
2020-12-11 21:52:52 +08:00
- name: Get Ref brach name
run: |
2020-12-12 05:37:11 +08:00
echo "${{ steps.branch-name.outputs.ref_branch }}"
2020-12-12 05:37:34 +08:00
# Outputs: "main" for non PR branches | "1/merge" for a PR branch
2020-12-11 21:52:52 +08:00
- name: Get Head Ref branch name
if: github.event_name == 'pull_request'
2020-12-11 21:21:28 +08:00
run: |
2020-12-12 05:37:11 +08:00
echo "${{ steps.branch-name.outputs.head_ref_branch }}"
2020-12-12 05:37:34 +08:00
# Outputs: "feature/test" current PR branch.
2020-12-11 21:52:52 +08:00
- name: Get Base Ref branch name
if: github.event_name == 'pull_request'
run: |
2020-12-12 05:37:11 +08:00
echo "${{ steps.branch-name.outputs.base_ref_branch }}"
2020-12-12 05:37:34 +08:00
# Outputs: "main" for main <- PR branch.
2021-04-24 18:41:16 +08:00
- name: Get the current tag
if: startsWith(github.ref, 'refs/tags/')
run: |
echo "${{ steps.branch-name.outputs.tag }}"
# Outputs: "v0.0.1" OR "0.0.1"
2020-12-11 21:15:40 +08:00
```
2020-12-12 01:42:26 +08:00
### Possible usage with [actions/checkout@v2](https://github.com/actions/checkout):
```yaml
2020-12-12 05:18:42 +08:00
on:
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
2020-12-12 01:42:26 +08:00
- name: Get branch names.
id: branch-names
2021-02-14 21:15:53 +08:00
uses: tj-actions/branch-names@v2.2
2020-12-12 01:42:26 +08:00
- uses: actions/checkout@v2
with:
ref: ${{ steps.branch-names.outputs.base_ref_branch }}
```
2020-12-11 21:15:40 +08:00
* Free software: [MIT license](LICENSE)
Credits
-------
This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter).
Report Bugs
-----------
2020-12-11 23:26:26 +08:00
Report bugs at https://github.com/tj-actions/branch-names/issues.
2020-12-11 21:15:40 +08:00
If you are reporting a bug, please include:
* Your operating system name and version.
* Any details about your workflow that might be helpful in troubleshooting.
* Detailed steps to reproduce the bug.