From af227779d9842893dcf1e6ef4a07b73d55afd622 Mon Sep 17 00:00:00 2001 From: Ethan Neff Date: Mon, 20 May 2024 09:54:00 -0700 Subject: [PATCH] fix: allow github action to work on repos --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 48c0c00d..63288fa3 100644 --- a/README.md +++ b/README.md @@ -239,9 +239,8 @@ jobs: runs-on: ubuntu-latest # Only run on main repo on and PRs that match the main repo. if: | - github.repository == 'example/example_repo' && - (github.event_name != 'pull_request' || - github.event.pull_request.head.repo.full_name == github.repository) + github.event_name != 'pull_request' || + github.event.pull_request.head.repo.full_name == github.repository steps: - name: Checkout Branch uses: actions/checkout@v3