diff options
author | Pierrick Hymbert <pierrick.hymbert@gmail.com> | 2024-03-30 11:36:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-30 12:36:07 +0200 |
commit | 37e7854c104301c5b5323ccc40e07699f3a62c3e (patch) | |
tree | 88fd26b6c56f253cc41831bc689b11ebdc73a438 | |
parent | c342d070c64a1ffe35d22c1b16b672e684a30297 (diff) |
ci: bench: fix Resource not accessible by integration on PR event (#6393)
-rw-r--r-- | .github/workflows/bench.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index d62ff478..949d806f 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -25,7 +25,7 @@ on: branches: - master paths: ['.github/workflows/bench.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/bench/**.*'] - pull_request: + pull_request_target: types: [opened, synchronize, reopened] paths: ['.github/workflows/bench.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/bench/**.*'] schedule: @@ -143,7 +143,6 @@ jobs: - name: Commit status uses: Sibz/github-status-action@v1 - continue-on-error: true # If not authorized on external repo with: authToken: ${{secrets.GITHUB_TOKEN}} sha: ${{ inputs.sha || github.event.pull_request.head.sha || github.sha }} |