Drop PR trigger

The git push at the end didn't have permission to push back to the source repo, even if the PR author granted permission for contributors to push to the source branch.
This commit is contained in:
Andrew Arnott 2024-01-06 13:48:56 -07:00
parent b8ba2282c2
commit 250425e54a
No known key found for this signature in database
GPG Key ID: 251505B99C25745D
1 changed files with 0 additions and 11 deletions

View File

@ -5,9 +5,6 @@ on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
@ -16,14 +13,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
if: github.event_name != 'pull_request'
- name: Checkout repo for PR
uses: actions/checkout@v4.1.1
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
if: github.event_name == 'pull_request'
- name: Compile ZIPs and Zcash Protocol Specification
uses: ./.github/actions/render