mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 22:53:50 +08:00
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Test branch-name
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Run test
|
|
id: branch-name
|
|
uses: ./
|
|
- name: Show output
|
|
run: |
|
|
echo "${{ steps.branch-name.outputs.base_ref_branch }}"
|
|
echo "${{ steps.branch-name.outputs.head_ref_branch }}"
|
|
echo "${{ steps.branch-name.outputs.ref_branch }}"
|
|
- name: Test base ref output
|
|
if: github.event_name == 'pull_request' && !steps.branch-name.outputs.base_ref_branch
|
|
run: |
|
|
echo "Base ref unset: ${{ steps.branch-name.outputs.base_ref_branch }}"
|
|
exit 1
|
|
- name: Test head ref output
|
|
if: github.event_name == 'pull_request' && !steps.branch-name.outputs.head_ref_branch
|
|
run: |
|
|
echo "Head ref unset: ${{ steps.branch-name.outputs.head_ref_branch }}"
|
|
exit 1
|
|
- name: Test ref output
|
|
if: "!steps.branch-name.outputs.ref_branch"
|
|
run: |
|
|
echo "Ref unset: ${{ steps.branch-name.outputs.ref_branch }}"
|
|
exit 1
|