Skip to content

Commit 0b84775

Browse files
CI: Support for pull-reviews video (#949)
Add automated video reviews for pull requests Repo: https://github.com/ambient-code/pull-reviews This is an initial add and will be highly configured later to address some more concerns. --------- Co-authored-by: Jeremy Eder <jeder@redhat.com>
1 parent 5768e12 commit 0b84775

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/pull-reviews.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Video Review
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
id-token: write
11+
12+
jobs:
13+
preel:
14+
uses: ambient-code/pull-reviews/.github/workflows/review.yml@main
15+
with:
16+
s3_bucket: pull-reviews
17+
gcp_project_id: ambient-code-platform
18+
gcp_region: us-east5
19+
gcp_workload_identity_provider: projects/888214980327/locations/global/workloadIdentityPools/github/providers/ambient-code-github-actions
20+
secrets:
21+
S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
22+
S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
23+
S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
24+
CDN_BASE_URL: ${{ secrets.CDN_BASE_URL }}

0 commit comments

Comments
 (0)