Skip to content

Task 1 workflow

Task 1 workflow #6

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"
- name: Lists push branch
if: ${{ github.event_name == 'push' }}
run: echo "Push branch"
- name: Lists files in repo
run: ls -alR