Browse Source

Remove pull_request_target usage because it messes CI builds.

pull/1491/head
josetr 5 years ago committed by GitHub
parent
commit
2a0493024a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      .github/workflows/main.yml

14
.github/workflows/main.yml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
name: CI
on: [push, pull_request_target]
on: [push, pull_request]
jobs:
posix:
@ -31,12 +31,6 @@ jobs: @@ -31,12 +31,6 @@ jobs:
- name: Test
run: build/RunTests.sh
- uses: MirrorNG/nunit-reporter@v1.0.9
if: always()
with:
path: build/**/TestResult.xml
access-token: ${{ secrets.GITHUB_TOKEN }}
windows:
strategy:
matrix:
@ -71,9 +65,3 @@ jobs: @@ -71,9 +65,3 @@ jobs:
run: |
build/InstallNugets.sh &&
build/RunTests.sh
- uses: MirrorNG/nunit-reporter@v1.0.9
if: always()
with:
path: build/**/TestResult.xml
access-token: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save