25 lines
486 B
YAML
25 lines
486 B
YAML
name: update-circt
|
|
|
|
# run weekly
|
|
on: push
|
|
# schedule:
|
|
# - cron: 0 0 * * 1
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash -leo pipefail {0}
|
|
|
|
jobs:
|
|
update-circt:
|
|
name: update-circt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update CIRCT
|
|
uses: circt/update-circt@v1.0.0
|
|
with:
|
|
user: 'bartender'
|
|
email: 'firesimchipyard@gmail.com'
|
|
pr-reviewers: ''
|
|
pr-labels: 'changelog:changed'
|
|
circt-config: './conda-reqs/circt.json'
|