forked from decentraland/unity-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (18 loc) · 960 Bytes
/
Copy pathmain.yml
File metadata and controls
22 lines (18 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Deployment Notification
on:
pull_request:
types: [ opened ]
jobs:
deployment_notification:
runs-on: ubuntu-latest
name: Decentraland Unity-Renderer Deployment Notification
steps:
- name: Comment PR
uses: thollander/actions-comment-pull-request@main
with:
message: |
After the CI passes:
- This branch can be previewed at https://play.decentraland.zone/?renderer-branch=${{ github.head_ref }}
- Code coverage report: [https://renderer-artifacts.decentraland.org/branch-coverage/${{ github.head_ref }}](https://renderer-artifacts.decentraland.org/branch-coverage/${{ github.head_ref }})
- Benchmark report: [https://renderer-artifacts.decentraland.org/branch-benchmark/${{ github.head_ref }}/index.html](https://renderer-artifacts.decentraland.org/branch-benchmark/${{ github.head_ref }}/index.html)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}