This PR aims to fix on call branches arguments. It expects a string but a list was given.
Screenshot of the error
Solution
Changing
on:
push:
branches:
- [master,main]
to
on:
push:
branches:
- master
- main
This was causing the workflow to fail without even starting, making it difficult to understand the exact cause for failure or whether it would even fail when run.
Notes for reviewers
You can merge this PR or amend the workflow file and dump this one.
Overview
This PR aims to fix
on
call branches arguments. It expects a string but a list was given.Screenshot of the error
Solution
Changing
to
This was causing the workflow to fail without even starting, making it difficult to understand the exact cause for failure or whether it would even fail when run.
Notes for reviewers
You can merge this PR or amend the workflow file and dump this one.