-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gary Guo <[email protected]>
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright lowRISC contributors (OpenTitan project). | ||
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Private CI | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "backport-*" | ||
tags: | ||
- "*" | ||
pull_request_target: | ||
branches: | ||
- "*" | ||
|
||
permissions: | ||
contents: write # For repository dispatch | ||
|
||
jobs: | ||
trigger: | ||
name: Trigger Private CI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger Private CI | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const payload = { | ||
sha: context.eventName === 'pull_request' ? context.payload.pull_request.head.sha : context.sha, | ||
pull_request: context.issue.number, | ||
inputs: { | ||
// For push events, also send branch name (for batching) | ||
branch: context.eventName === 'pull_request' ? undefined : context.ref, | ||
run_name: context.eventName === 'pull_request' ? context.payload.pull_request.title : context.payload.head_commit.message.split('\n')[0], | ||
}, | ||
}; | ||
await github.rest.repos.createDispatchEvent({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
event_type: 'cross-repo-ci', | ||
client_payload: { | ||
...payload, | ||
target: `${context.repo.owner}/opentitan-private-ci/master/private-ci-integrated.yml`, | ||
} | ||
}); |