We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, Strategy::matrix is defined as a List { mapKey : Text, mapValue : List Text }:
Strategy::matrix
List { mapKey : Text, mapValue : List Text }
https://github.com/regadas/github-actions-dhall/blob/master/types/Strategy.dhall
However, Github Actions supports having an exclude key that is a list of records (not Text):
exclude
Text
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix
Currently it's not possible to specify an exclude field in the matrix, because it doesn't match the type.
The text was updated successfully, but these errors were encountered:
Hi @erwan! Thanks for the report!
Do you feel you can find some time to propose a fix? 😄 🙏
Sorry, something went wrong.
Actually I tried, but I don't know how to fix it! I couldn't find a way to type the exclude field.
It's too generic, we would want a list of objects that can have any key. I couldn't find how to do that in dhall...
No branches or pull requests
Currently,
Strategy::matrix
is defined as aList { mapKey : Text, mapValue : List Text }
:https://github.com/regadas/github-actions-dhall/blob/master/types/Strategy.dhall
However, Github Actions supports having an
exclude
key that is a list of records (notText
):https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-excluding-configurations-from-a-matrix
Currently it's not possible to specify an
exclude
field in the matrix, because it doesn't match the type.The text was updated successfully, but these errors were encountered: