-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (32 loc) · 1.16 KB
/
pr-comment-database-changes.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
name: Add comment to PRs displaying changes to the database
on:
pull_request:
jobs:
add-database-changes-comment-to-pr:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
env:
BODY_FILE: "database-changes-comment.md"
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Create comment
env:
COMMIT_ID: ${{ github.event.pull_request.head.sha }}
run: |
which pip
pip install python-packages/input4MIPs-CVs
python python-packages/input4MIPs-CVs/src/input4MIPs_CVs/cli/create-database-diff-comment.py --current-db Database/input4MIPs_db_file_entries.json --out-file $BODY_FILE --commit-id $COMMIT_ID
# # Turn on for debugging
# cat $BODY_FILE
- name: Add comment
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
run: gh pr comment "$PR_NUMBER" --body-file "$BODY_FILE"