forked from openhwgroup/cva6
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update trigger conditions and refs (#49)
* ci: Remove pull_request_target jobs Remove pull_request_target as trigger for jobs since it causes jobs to bypass approvals. * ci/integration: Bump action * ci/hyp: Update reference to riscv-hyp-tests --------- Signed-off-by: Nils Wistoff <[email protected]>
- Loading branch information
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,17 @@ | |
# Author: Nils Wistoff <[email protected]> | ||
|
||
name: integration | ||
on: [ push, pull_request_target, workflow_dispatch ] | ||
on: [ push, pull_request, workflow_dispatch ] | ||
|
||
jobs: | ||
cheshire-integration: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 200 | ||
if: github.repository == 'pulp-platform/cva6' | ||
# Skip on forks due to missing secrets. | ||
if: github.repository == 'pulp-platform/cva6' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) | ||
steps: | ||
- name: Integrate into cheshire | ||
uses: pulp-platform/pulp-actions/integrate@v2.2.0 | ||
uses: pulp-platform/pulp-actions/integrate@v2.3.0 | ||
with: | ||
ip-name: cva6 | ||
org: pulp-platform | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters