mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 00:13:51 +08:00
38 lines
855 B
YAML
38 lines
855 B
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: shellcheck
|
|
uses: reviewdog/action-shellcheck@v1
|
|
- 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: steps.branch-name.outputs.base_ref_branch
|
|
# run: |
|
|
# exit 1
|
|
# - name: Test head ref output
|
|
# run: |
|
|
# exit 1
|
|
# - name: Test ref output
|
|
# run: |
|
|
# exit 1
|