Merge pull request #2682 from makerdao/VoteWizard-patch-4 #12208
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |