zachschultz opened a new issue #394: Change manifest file to not need specific 
location of action in rules and sequences
URL: https://github.com/apache/incubator-openwhisk-wskdeploy/issues/394
 
 
   Right now when we write the location of an action for a rule and sequence in 
the manifest file it needs to be in the format `PACKAGE_NAME/ACTION_NAME`, i.e.
   
   ```
   package:
       name: cloudant-trigger
      ...
       actions:
           process-change:
               function: actions/process-change.js
       sequences:
           process-change-cloudant-sequence:
               actions: openwhisk-cloudant/read, cloudant-trigger/process-change
       rules:
           log-change-rule:
               trigger: data-inserted-trigger
               action: cloudant-trigger/process-change-cloudant-sequence
   ```
   
   It would be nice if we only needed to write `process-change` and 
`process-change-cloudant-sequence` instead, especially if we want to allow 
users to change the package name with an environment variable. Replacing just 
`package.name` is much easier than having to scrape through the entire manifest 
file to find and replace the instances of the package.name.
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to