-
Notifications
You must be signed in to change notification settings - Fork 65
75 lines (62 loc) · 2.11 KB
/
pull_request_for_xcm.yaml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Check pull requests
on:
pull_request:
paths:
- 'xcm/**'
pull_request_target:
types: [labeled]
jobs:
create-comment-with-changes:
runs-on: ubuntu-latest
name: Create a comment with xcm changed data
steps:
- name: Checkout
uses: actions/checkout@v3
- name: 🛠 Set up actual paths
uses: ./.github/workflows/setup-path
- name: Was transfers.json changed?
id: prod
uses: tj-actions/changed-files@v18.2
with:
files: |
${{ env.XCM_JSON_PATH }}
- name: Was transfers_dev.json changed?
id: dev
uses: tj-actions/changed-files@v18.2
with:
files: |
${{ env.DEV_XCM_JSON_PATH }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build body text
run: echo This comment was written by a bot! >> body_file.txt
- name: Generate message for PROD
if: steps.prod.outputs.any_changed == 'true'
run: |
echo "## Changes for PROD" >> body_file.txt
python scripts/print_xcm_changes.py prod >> body_file.txt
- name: Generate message for DEV
if: steps.dev.outputs.any_changed == 'true'
run: |
echo "## Changes for DEV" >> body_file.txt
python scripts/print_xcm_changes.py dev >> body_file.txt
- name: Find Comment
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
body-includes: This comment was written by a bot!
- name: Create comment
if: steps.fc.outputs.comment-id == ''
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.pull_request.number }}
body-file: body_file.txt
- name: Update comment
if: steps.fc.outputs.comment-id != ''
uses: peter-evans/create-or-update-comment@v2
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
body-file: body_file.txt
edit-mode: replace