diff --git a/.github/workflows/pr_from_upstream.yml b/.github/workflows/pr_from_upstream.yml
index 4da37d9..d585dfe 100644
--- a/.github/workflows/pr_from_upstream.yml
+++ b/.github/workflows/pr_from_upstream.yml
@@ -71,12 +71,12 @@ jobs:
           echo "EOF" >> $GITHUB_ENV
       
       - name: Push changes to new branch
-        if: success() && env.SKIP_PR == 'false'
+        if: success()
         run: |
           git push origin "${{ env.BRANCH_NAME }}"
       
       - name: Create Pull Request
-        if: success() && env.SKIP_PR == 'false'
+        if: success()
         uses: peter-evans/create-pull-request@v7.0.5
         with:
           token: ${{ steps.generate-rekku-token.outputs.token || secrets.GITHUB_TOKEN }}