-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1.04 KB
/
updateChronicle.yml
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
name: update chronicle
# Trigger the workflow when the validation action finished
on:
workflow_run:
workflows: ["trident validate"]
types:
- completed
branches:
- "main"
jobs:
chronicle:
name: update chronicle file
runs-on: ubuntu-latest
steps:
- name: Install trident
run: |
wget https://github.com/poseidon-framework/poseidon-hs/releases/latest/download/trident-Linux
chmod +x trident-Linux
- name: Clone data repo
uses: actions/checkout@v3
with:
path: data
- name: Update file
run: ./trident-Linux chronicle -d data -u data/archive.chron --logMode VerboseLog
- name: Create pull request with updates
uses: peter-evans/create-pull-request@v5
with:
path: data
commit-message: Update of chronicle file
branch: chronicleUpdates
delete-branch: true
title: '[Automatic PR] Update chronicle file'
body: |
Please check if the changes are as expected.
reviewers: nevrome