workflow

Proper version control workflow for a mixture of repositories

久未见 提交于 2019-12-07 14:04:31
Would appreciate your feedback on the following (I'm a Git beginner). I have a public repo on GitHub for my dissertation study's artifacts (mostly software, written in R ). I'd like to adapt a third-party GitHub repo, containing LaTeX dissertation template (basically, I want to periodically sync with it, merging changes, which I want/need). I've created corresponding submodule for the manuscript within my main project directory structure. However, now I questioning whether this route is the best (optimal). My questions : 1) What is the proper workflow for the above-mentioned task? 2) Would is

How to trigger a SharePoint workflow by updating ONLY a value in a list item (approved, not approved)?

主宰稳场 提交于 2019-12-07 13:24:36
问题 I am new to SharePoint but I learn quick. I want to trigger a workflow only when a value is updated in a list item, but not everytime the item is changed. For example I have a column for approve/not approve and I want that to be the trigger not the other values in the item. So if anything else is changed the workflow will not start unless the 'approval' value is. All help is appreciated! Thanks, 回答1: If you wish to accomplish this programmatically... Create a ItemUpdating event handler and

Mercurial workflow with subrepositories and offline clones?

风格不统一 提交于 2019-12-07 09:55:20
问题 I'm offline a lot. So normally, I use one local clone as a "hub" for features, bugs, etc. hg clone local-hub bug-123 Works offline. Cool. Can I use a similar workflow if that project contains remote subrepositories? Because, if .hgsub says sub/shared = http://server/hg/shared hg clone says abort: error: getaddrinfo failed Note that once the clone is created (while connected), push and pull will use the path in the subrepo's hgrc (instead of the location in .hgsub ). So I can point this to a

Workflow orchestration for Google Dataflow

有些话、适合烂在心里 提交于 2019-12-07 09:53:37
问题 We are using Google Dataflow for batch data processing and looking for some options for workflow orchestration tools something similar to what Azkaban does for Hadoop. Key things things that we are looking for are, Configuring workflows Scheduling workflows Monitoring and alerting failed workflows Ability to rerun failed jobs We have evaluated Pentaho, but these features are available in their Enterprise edition which is expensive. We are currently evaluating Azkaban as it supports

Trying to get to the bottom of a Windows Workflow 4.5 issue

烈酒焚心 提交于 2019-12-07 09:03:17
问题 The error I am getting is "The WorkflowApplication has been aborted because a Load or LoadRunnableInstance operation threw an exception. Create a new WorkflowApplication object to try loading another workflow instance." I am using "workflowapplication" to run the workflow. The workflow instance I'm trying to load (there are a few of them) were created sometime ago and were persisted into the database. Is there a way to find the exception that was actually thrown during Load or

Alfresco Share: accessing bpm_comment in Activiti workflow

ⅰ亾dé卋堺 提交于 2019-12-07 08:20:48
问题 In Activiti workflow, how can I access variable bpm_comment for each comment that's input by user? If I'm using bpm_comment in every task, it shows the same comment (the first one). 回答1: I've solved it! In each userTask I used the following code to retrieve bpm:comment. var taskId = "activiti$" + task.getId(); var taskComment = workflow.getTask(taskId).getProperties()["bpm:comment"]; 来源: https://stackoverflow.com/questions/10275075/alfresco-share-accessing-bpm-comment-in-activiti-workflow

Workflow system [closed]

荒凉一梦 提交于 2019-12-07 06:36:35
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I've just started at a new communications company, and we're looking at a workflow / intranet system to manage jobs and processes. Basically, we receive data files from clients which we then process through our systems. Receive data file (FTP, Email, etc) Process data file (either generic script with data

Git “Live Server” Best Practices

倾然丶 夕夏残阳落幕 提交于 2019-12-07 05:06:19
问题 My partner and I have been dabbling with the idea of pushing and pulling from a repo that affects files viewable by the general public as opposed to storing the repos in a hidden location and just FTPing files when we feel they're good to go. While being able to directly push to the "live site" would be extremely convenient, I'm wondering what negative repercussions (if any) this would incur. Thanks a lot! 回答1: I would recommend pulling rather than pushing if going this route. Always pull the

Perl Workflow module with validator

ε祈祈猫儿з 提交于 2019-12-07 04:46:51
问题 i'm trying to get things work with perl Workflow module - http://search.cpan.org/~jonasbn/Workflow/ I managed to figure out how it works with workflows, actions, conditions and all but i can't get it to apply validator class to the action. My _init method from validator loads and prints out the line that i put there for testing but validate method is not triggered ever. Also, when dumping $self->get_validators() from action class i get empty list. I created a short example so please try it

Loading a workflow stored as XAML in .NET 4.0

有些话、适合烂在心里 提交于 2019-12-07 03:16:34
问题 What is the syntax for loading a .NET 4.0 Beta2 workflow that was previously created and stored as XAML. The WorkflowElement and WorkflowXamlServices classes no longer exist. I am trying to do something like this (that worked in Beta 1): WorkflowElement wf = WorkflowXamlServices.Load(File.OpenRead("Workflow.xaml")) as WorkflowElement; 回答1: Found my own answer after further research. The WorkflowElement and WorkflowXamlServices classes have been removed from Beta2. The approach above requires