diff --git a/.github/workflows/task-1.yaml b/.github/workflows/task-1.yaml index 2fa055c..473bbd7 100644 --- a/.github/workflows/task-1.yaml +++ b/.github/workflows/task-1.yaml @@ -8,9 +8,9 @@ jobs: - uses: actions/checkout@v4 - name: Lists PRs branches if: ${{ github.event_name == 'pull_request' }} - run: echo "PR source" + run: echo 'PR source: ${{ github.base_ref }} target: ${{ github.ref }}' - name: Lists push branch if: ${{ github.event_name == 'push' }} - run: echo "Push branch" + run: echo 'Push branch: ${{ github.ref }}, commit ref: ${{ github.sha }}' - name: Lists files in repo run: ls -alR