Skip to content

Commit

Permalink
chore: Removes pull_request event
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubax committed Mar 19, 2024
1 parent 1f3fe12 commit 00c5aaa
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/task-1.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
name: task-1-workflow
run-name: Task 1 workflow
on: [push, pull_request]
on: [push]
jobs:
example-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lists PRs branches
run: echo "PR base ${{ github.base_ref }} head ${{ github.head_ref }}"
if: ${{ github.event_name == 'pull_request' }}
- name: Lists push branch
run: echo 'Push branch ${{ github.ref }}, commit ref ${{ github.sha }}'
if: ${{ github.event_name == 'push' }}
- name: Lists files in repo
run: ls -alR

0 comments on commit 00c5aaa

Please sign in to comment.