-
Notifications
You must be signed in to change notification settings - Fork 1.1k
57 lines (53 loc) · 1.97 KB
/
Copy pathprivate-ci.yml
File metadata and controls
57 lines (53 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# 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-*"
- "gh-readonly-queue/**"
tags:
- "*"
pull_request_target:
branches:
# We should only run Private CI on `master` currently.
- "master"
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@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
const payload = {
sha: context.eventName === 'pull_request_target' ? 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_target' ? undefined : context.ref,
run_name: context.eventName === 'pull_request_target' ? 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.yml`,
}
});
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-realintent-ci/main/ascentlint-ci.yml`,
}
});