Skip to content

chore: Removes base_ref #8

chore: Removes base_ref

chore: Removes base_ref #8

Workflow file for this run

name: task-1-workflow
run-name: Task 1 workflow
on: [push, pull_request]
jobs:
example-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lists PRs branches
if: ${{ github.event_name == 'pull_request' }}
run: echo 'PR source: target: ${{ github.ref }}'

Check failure on line 11 in .github/workflows/task-1.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/task-1.yaml

Invalid workflow file

You have an error in your yaml syntax on line 11
- name: Lists push branch
if: ${{ github.event_name == 'push' }}
run: echo 'Push branch: ${{ github.ref }}, commit ref: ${{ github.sha }}'
- name: Lists files in repo
run: ls -alR