Skip to content

Commit

Permalink
ci: Add new workflow for governor token list update
Browse files Browse the repository at this point in the history
  • Loading branch information
djb15 committed Dec 8, 2023
1 parent 94504dc commit eac69ee
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/governor-token-list.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Governor Token List Update
on:
pull:
schedule:
- cron: '0 0 15 * *' # Run at 00:00 on the 15th of every month

jobs:
token-list-update:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: "1.20.10"
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: Generate new token list
run: |
cd node/hack/governor
npm ci
npm run start
- name: Verify new token list
run: |
cd node/hack/governor
go run check_query.go
- name: Run Governor tests
run: |
cd node/pkg/governor
go test
- name: Read changes.txt file
id: changes
working-directory: "./node/hack/governor"
run: echo "::set-output name=changes::$(cat changes.txt)"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5.0.2
with:
commit-message: "node: governor token list update"
body: ${{ steps.changes.outputs.changes }}
title: 'node: Governor token list update'
branch: node/governor-token-list-update
delete-branch: true
draft: true

0 comments on commit eac69ee

Please sign in to comment.