-
Notifications
You must be signed in to change notification settings - Fork 163
33 lines (33 loc) · 1.02 KB
/
aggregate-polls.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
name: 'Aggregate Polls'
on:
push:
branches:
- master
paths:
- governance/polls/**
- '!governance/polls/meta/polls.json'
- '!governance/polls/meta/hashed-polls.json'
workflow_dispatch:
schedule:
# Run the action every 30 minutes
- cron: '*/30 * * * *'
jobs:
aggregate_polls:
runs-on: ubuntu-latest
name: Aggregates all of the polls into a single file, creating a pull request with the new file.
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Upload
id: upload
uses: makerdao-dux/[email protected]
with:
network: 'mainnet'
tags-file: 'governance/polls/meta/poll-tags.json'
output-file: 'governance/polls/meta/polls.json'
hash-file: 'governance/polls/meta/hashed-polls.json'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: 'Automatic update to the polls aggregated file'