Skip to content

Commit

Permalink
chore: Changes " to ' in echo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubax committed Mar 8, 2024
1 parent 55bb86d commit 49fe726
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/task-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 49fe726

Please sign in to comment.