Skip to content

Commit

Permalink
chore: Running the action on all PRs (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrunkat authored Aug 4, 2023
1 parent 0c403f8 commit 006f81c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr_toolkit.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This is an original action workflow, not the organization-wide one.
name: Apify PR toolkit

on:
pull_request:
branches: [ $default-branch ] # Run only on PRs to default branch (i.e., develop), not on releases and PR chains
types: ['opened', 'reopened', 'synchronize', 'labeled', 'unlabeled', 'edited', 'ready_for_review'] # The first 3 are default.

concurrency: # This is to make sure that it's executed only for the most recent changes of PR.
Expand All @@ -11,7 +11,7 @@ concurrency: # This is to make sure that it's executed only for the most recent

jobs:
apify-pr-toolkit:
if: github.event.pull_request.draft == false &&
if: github.event.pull_request.draft == false
runs-on: ubuntu-20.04
steps:
- name: clone local repository
Expand Down

0 comments on commit 006f81c

Please sign in to comment.