mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 23:33:50 +08:00
72 lines
3.0 KiB
YAML
72 lines
3.0 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
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 "Current Branch: ${{ steps.branch-name.outputs.current_branch }}"
|
|
echo "Base Ref: ${{ steps.branch-name.outputs.base_ref_branch }}"
|
|
echo "Head Ref: ${{ steps.branch-name.outputs.head_ref_branch }}"
|
|
echo "Ref: ${{ steps.branch-name.outputs.ref_branch }}"
|
|
echo "Is Default: ${{ steps.branch-name.outputs.is_default }}"
|
|
echo "Current tag: ${{ steps.branch-name.outputs.tag }}"
|
|
- name: Check is_default for pull request
|
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && steps.branch-name.outputs.is_default != 'false'
|
|
run: |
|
|
echo "Is default is invalid: ${{ steps.branch-name.outputs.is_default }}"
|
|
exit 1
|
|
- name: Check is_default for non pull request
|
|
if: github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/') && steps.branch-name.outputs.is_default != 'true'
|
|
run: |
|
|
echo "Is default is invalid: ${{ steps.branch-name.outputs.is_default }}"
|
|
exit 1
|
|
- name: Test base ref output
|
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && !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' && !startsWith(github.ref, 'refs/tags/') && !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 && !startsWith(github.ref, 'refs/tags/') "
|
|
run: |
|
|
echo "Ref unset: ${{ steps.branch-name.outputs.ref_branch }}"
|
|
exit 1
|
|
- name: Test current branch output for pull_request event.
|
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.current_branch
|
|
run: |
|
|
echo "Current branch unset: ${{ steps.branch-name.outputs.current_branch }}"
|
|
exit 1
|
|
- name: Test current branch output for push event.
|
|
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.current_branch
|
|
run: |
|
|
echo "Current branch unset: ${{ steps.branch-name.outputs.current_branch }}"
|
|
exit 1
|
|
- name: Test current tag for push events.
|
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.tag
|
|
run: |
|
|
echo "Current tag unset: ${{ steps.branch-name.outputs.tag }}"
|
|
exit 1
|
|
|