branch-names/README.md

92 lines
2.5 KiB
Markdown
Raw Normal View History

2020-12-11 16:31:57 -05:00
branch-names
------------
2020-12-11 08:15:40 -05:00
2020-12-11 10:25:16 -05:00
Get branch information without the `/ref/*` prefix
2020-12-11 08:15:40 -05:00
```yaml
...
steps:
- uses: actions/checkout@v2
2020-12-11 10:39:03 -05:00
- name: Get branch names
2020-12-11 10:25:46 -05:00
uses: tj-actions/branch-names@v1
2020-12-11 10:39:03 -05:00
id: branch-names
2020-12-11 08:52:52 -05:00
- name: Get Ref brach name
run: |
2020-12-11 16:37:11 -05:00
echo "${{ steps.branch-name.outputs.ref_branch }}"
2020-12-11 16:37:34 -05:00
# Outputs: "main" for non PR branches | "1/merge" for a PR branch
2020-12-11 08:52:52 -05:00
- name: Get Head Ref branch name
if: github.event_name == 'pull_request'
2020-12-11 08:21:28 -05:00
run: |
2020-12-11 16:37:11 -05:00
echo "${{ steps.branch-name.outputs.head_ref_branch }}"
2020-12-11 16:37:34 -05:00
# Outputs: "feature/test" current PR branch.
2020-12-11 08:52:52 -05:00
- name: Get Base Ref branch name
if: github.event_name == 'pull_request'
run: |
2020-12-11 16:37:11 -05:00
echo "${{ steps.branch-name.outputs.base_ref_branch }}"
2020-12-11 16:37:34 -05:00
# Outputs: "main" for main <- PR branch.
2020-12-11 08:15:40 -05:00
```
2020-12-11 12:42:26 -05:00
### Possible usage with [actions/checkout@v2](https://github.com/actions/checkout):
```yaml
2020-12-11 16:18:42 -05:00
on:
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
2020-12-11 12:42:26 -05:00
- name: Get branch names.
id: branch-names
uses: tj-actions/branch-names@v1
- uses: actions/checkout@v2
with:
ref: ${{ steps.branch-names.outputs.base_ref_branch }}
```
2020-12-11 08:15:40 -05:00
## Inputs
| Input | type | required | default |
|:-------------:|:-----------:|:-------------:|:---------------------:|
| token | `string` | `false` | `${{ github.token }}` |
2020-12-11 10:21:30 -05:00
## Outputs
2020-12-11 10:42:24 -05:00
| Output | type | Example | Description |
|:--------------------:|:-----------:|:-----------------:|:------------------------------------------------:|
2020-12-11 10:45:13 -05:00
| base_ref_branch | `string` | `main` | The target branch of a pull request |
2020-12-11 10:42:24 -05:00
| head_ref_branch | `string` | `feature/test` | The source branch of a pull request |
2020-12-11 10:45:13 -05:00
| ref_branch | `string` | `1/merge` | The branch that triggered the workflow run |
2020-12-11 10:21:30 -05:00
2020-12-11 08:15:40 -05:00
* Free software: [MIT license](LICENSE)
Credits
-------
This package was created with [Cookiecutter](https://github.com/cookiecutter/cookiecutter).
Report Bugs
-----------
2020-12-11 10:26:26 -05:00
Report bugs at https://github.com/tj-actions/branch-names/issues.
2020-12-11 08:15:40 -05: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.