Hi! I realize this isn’t necessarily a Mimi-specific question so feel free to remove if inappropriate, (not sure if the issue is arising from something Julia / GitHub related) but I thought I might try to ask on here in case anyone can help. For the past few days, every few hours I get an email from GitHub with the following message:
Not sure what’s going on…?
Thanks so much!
Best,
Tammy
Hi @tammyt123 it looks like MimiPAGE2009 uses the Julia Package Butler as part of some continuous integration and package versioning, and it is failing on your machine. That might just be because you haven’t enabled it with your Github account, or some other reason, but for now to avoid just getting those constant updates for now I’d just go into the jlpkgbutler-butler-workflow.yml
file and comment out the lines that run the workflow on
i.e. this part:
name: Run the Julia Package Butler
on:
push:
branches:
# - master
schedule:
# - cron: '0 */1 * * *'
jobs:
butler:
name: "Run Package Butler"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: davidanthoff/julia-pkgbutler@releases/v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
ssh-private-key: ${{ secrets.JLPKGBUTLER_TOKEN }}
channel: stable
that’ll stop it from running for now, I believe, and then if you want to merge the branch or fork later we ca handle that as it comes.
1 Like