You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There appear to be a be a bug in nektos/act (or at least gitea's fork of it) which does not process the YAML of an on specification correctly when there are no child nodes, eg:
on:
pull_request:
push:
branches:
- main
- release/**
In my local testing, I was able to make it happy by adding a types child, but interestingly when running in gitea (and I tried both 1.19 and the latest 1.20.0 dev build, which I hoped would have the latest act, but it doesn't seem like it is quite up to date yet) the only thing to satisfy it was to add a branches child.
In the meantime, a fairly simple workaround is to change it to:
on:
pull_request:
branches:
- '*'
push:
branches:
- main
- release/**
It now runs, but fails because it cannot checkout laconicd (which makes sense, as I don't have it in my gitea, nor have I given it a GitHub token to get it from there).
Migrated the laconic-sdk repo and made a PR to test Actions.
Nothing runs. In Gitea log I see:
The action runs on GitHub:
The text was updated successfully, but these errors were encountered: