mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-23 23:43:51 +08:00
Update test.yml
This commit is contained in:
parent
15b5e1609f
commit
e20a6f0a3b
22
.github/workflows/test.yml
vendored
22
.github/workflows/test.yml
vendored
@ -2,6 +2,8 @@ name: CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
@ -19,6 +21,7 @@ jobs:
|
|||||||
id: branch-name
|
id: branch-name
|
||||||
uses: ./
|
uses: ./
|
||||||
- name: Show output
|
- name: Show output
|
||||||
|
if: "!startsWith(github.ref, 'refs/tags/')"
|
||||||
run: |
|
run: |
|
||||||
echo "Current Branch: ${{ steps.branch-name.outputs.current_branch }}"
|
echo "Current Branch: ${{ steps.branch-name.outputs.current_branch }}"
|
||||||
echo "Base Ref: ${{ steps.branch-name.outputs.base_ref_branch }}"
|
echo "Base Ref: ${{ steps.branch-name.outputs.base_ref_branch }}"
|
||||||
@ -26,38 +29,43 @@ jobs:
|
|||||||
echo "Ref: ${{ steps.branch-name.outputs.ref_branch }}"
|
echo "Ref: ${{ steps.branch-name.outputs.ref_branch }}"
|
||||||
echo "Is Default: ${{ steps.branch-name.outputs.is_default }}"
|
echo "Is Default: ${{ steps.branch-name.outputs.is_default }}"
|
||||||
- name: Check is_default for pull request
|
- name: Check is_default for pull request
|
||||||
if: github.event_name == 'pull_request' && steps.branch-name.outputs.is_default != 'false'
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && steps.branch-name.outputs.is_default != 'false'
|
||||||
run: |
|
run: |
|
||||||
echo "Is default is invalid: ${{ steps.branch-name.outputs.is_default }}"
|
echo "Is default is invalid: ${{ steps.branch-name.outputs.is_default }}"
|
||||||
exit 1
|
exit 1
|
||||||
- name: Check is_default for non pull request
|
- name: Check is_default for non pull request
|
||||||
if: github.event_name != 'pull_request' && steps.branch-name.outputs.is_default != 'true'
|
if: github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/') && steps.branch-name.outputs.is_default != 'true'
|
||||||
run: |
|
run: |
|
||||||
echo "Is default is invalid: ${{ steps.branch-name.outputs.is_default }}"
|
echo "Is default is invalid: ${{ steps.branch-name.outputs.is_default }}"
|
||||||
exit 1
|
exit 1
|
||||||
- name: Test base ref output
|
- name: Test base ref output
|
||||||
if: github.event_name == 'pull_request' && !steps.branch-name.outputs.base_ref_branch
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.base_ref_branch
|
||||||
run: |
|
run: |
|
||||||
echo "Base ref unset: ${{ steps.branch-name.outputs.base_ref_branch }}"
|
echo "Base ref unset: ${{ steps.branch-name.outputs.base_ref_branch }}"
|
||||||
exit 1
|
exit 1
|
||||||
- name: Test head ref output
|
- name: Test head ref output
|
||||||
if: github.event_name == 'pull_request' && !steps.branch-name.outputs.head_ref_branch
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.head_ref_branch
|
||||||
run: |
|
run: |
|
||||||
echo "Head ref unset: ${{ steps.branch-name.outputs.head_ref_branch }}"
|
echo "Head ref unset: ${{ steps.branch-name.outputs.head_ref_branch }}"
|
||||||
exit 1
|
exit 1
|
||||||
- name: Test ref output
|
- name: Test ref output
|
||||||
if: "!steps.branch-name.outputs.ref_branch"
|
if: "!steps.branch-name.outputs.ref_branch && !startsWith(github.ref, 'refs/tags/') "
|
||||||
run: |
|
run: |
|
||||||
echo "Ref unset: ${{ steps.branch-name.outputs.ref_branch }}"
|
echo "Ref unset: ${{ steps.branch-name.outputs.ref_branch }}"
|
||||||
exit 1
|
exit 1
|
||||||
- name: Test current branch output for pull_request event.
|
- name: Test current branch output for pull_request event.
|
||||||
if: github.event_name == 'pull_request' && !steps.branch-name.outputs.current_branch
|
if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.current_branch
|
||||||
run: |
|
run: |
|
||||||
echo "Current branch unset: ${{ steps.branch-name.outputs.current_branch }}"
|
echo "Current branch unset: ${{ steps.branch-name.outputs.current_branch }}"
|
||||||
exit 1
|
exit 1
|
||||||
- name: Test current branch output for push event.
|
- name: Test current branch output for push event.
|
||||||
if: github.event_name == 'push' && !steps.branch-name.outputs.current_branch
|
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') && !steps.branch-name.outputs.current_branch
|
||||||
run: |
|
run: |
|
||||||
echo "Current branch unset: ${{ steps.branch-name.outputs.current_branch }}"
|
echo "Current branch unset: ${{ steps.branch-name.outputs.current_branch }}"
|
||||||
exit 1
|
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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user