Skip to content

Commit

Permalink
Workflows: Update to unittests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
msinn committed Mar 30, 2023
1 parent 6caddad commit b271bee
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,23 @@ jobs:

- name: Workflow Information
run: |
echo github.event_name ${{ github.event_name }}
echo github.workflow ${{ github.workflow }}
echo github.action_repository ${{ github.action_repository }}
echo github.actor ${{ github.actor }}
echo github.ref_name ${{ github.ref_name }}
echo github.ref ${{ github.ref }}
echo github.base_ref '${{ github.base_ref }}'
echo github.head_ref '${{ github.head_ref }}'
echo github.event_name '${{ github.event_name }}'
echo github.workflow '${{ github.workflow }}'
echo github.action_repository '${{ github.action_repository }}'
echo github.actor '${{ github.actor }}'
echo github.ref_name '${{ github.ref_name }}'
echo github.ref '${{ github.ref }}'
echo github.base_ref '${{ github.base_ref }}'
echo github.head_ref '${{ github.head_ref }}'
echo github.pull_request.base.ref '${{ github.pull_request.base.ref }}'
echo steps.extract_branch.outputs.branch '${{ steps.extract_branch.outputs.branch }}'
- name: Checkout core from branch '${{steps.extract_branch.outputs.branch}}' (for push)
- name: Checkout core from branch '${{ steps.extract_branch.outputs.branch }}' (for push)
if: github.event_name != 'pull_request'
uses: actions/checkout@v3
with:
repository: smarthomeNG/smarthome
ref: ${{steps.extract_branch.outputs.branch}}
ref: ${{ steps.extract_branch.outputs.branch }}

- name: Checkout core from branch 'develop' (for pull request)
if: github.event_name == 'pull_request'
Expand Down

0 comments on commit b271bee

Please sign in to comment.