We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a var passed around called filterEntities that is used to filter what actions are to be deployed because they have changed.
filterEntities
Sometimes it is a Boolean: true, sometimes it is undefined, and sometimes it is an Object with a property actions which is an Array of actionNames ...
true
undefined
actions
{ filterEntities: { actions: [ 'say-hello' ] } }
We need to be diligent about the types of objects we use, and they should never change.
The text was updated successfully, but these errors were encountered:
JIRA issue created: https://jira.corp.adobe.com/browse/ACNA-2050
Sorry, something went wrong.
No branches or pull requests
There is a var passed around called
filterEntities
that is used to filter what actions are to be deployed because they have changed.Sometimes it is a Boolean:
true
, sometimes it isundefined
, and sometimes it is an Object with a propertyactions
which is an Array of actionNames ...{ filterEntities: { actions: [ 'say-hello' ] } }
We need to be diligent about the types of objects we use, and they should never change.
The text was updated successfully, but these errors were encountered: