#717  Team collaboration workflow
Closed
Artur opened 2 years ago

Within our team we have a special workflow which allows us to update the rest of the team about what everybody is planning to work on and worked on in recent days. It looks like this:

  1. Once a week (Sunday evening or Monday morning) a new issue is created for each team member asking him: What do you plan to be working on this week? (of course email notification is sent to the team member as well). So, everybody briefly writes a sentence or 2 about this week work plan.
  2. Every day, at the end of the work day a new issue is created for each team member asking: What did you work on today? (and email with notification about the issue is sent). Again, everybody responds to the issue with 1-2 sentences describing what was done this day.

Than we the project board which displays all issues for the current week. This way everybody can quickly check what is currently going on. All the issues are being automatically closed at the end of the week and new issues are created next week.

So, now my question, can something like this, be done on OneDev?

jbauer commented 2 years ago

Sounds like a workaround for a missing feature that would clutter your issue tracker quite a bit?

Anyways, OneDev has an API so you could create a project within OneDev, define a OneDev build and let it run regularly (cron). That build then executes a shell script which controls OneDev via its API. That way you should be able to replicate the workflow.

However I think a better solution would be to create lots of issue boards. At least that is what I do. I have one board per developer which allows the developer to manage their assigned issues (with columns like "open", "assigned/reserved", "working on", "on hold", "done"). Then you can define an "overview" issue board which has one column per developer and shows the issues all developers are working on. This could also be done on a team basis (one "overview" per team), if you are willing to define a custom issue field describing the team the issue is assigned to. Maybe that custom field can also be automatically prefilled using a groovy script which uses the user group of the assigned developer to fill the custom field.

Next you can create weekly milestones, so that issues can be assigned to a "week". Once you do that issue boards are filtered based on the milestone selected and have a backlog which contains everything that is not part of the selected milestone.

I think with milestones, creating additional custom fields and issue states you can build a great overview and workflow using issue boards. That way everyone always has an up-to-date view of what is going on without constantly creating/closing issues week after week. At least give it a try.

Artur commented 2 years ago

Thank you for your comments and suggestions. We already do what you suggested. However, this is more for a project progress tracking. But this does not give me a quick way to see what is team working on right now.

The thing is, we have lots of projects running in parallel, each project has a list of tasks and issues of other type. On top of this, we have quite a few customers to whom we provide support. This is also all tracked in the system. Typically one support project per customer, sometimes additional projects for customers tracking custom development and a helpdesk project to track support requests for users and others.

As you can see, there is lots of going on and no matter how clever summary board you have, you cannot have a quick overview. Let's say, one developer planned to work on a new feature for our iOS app but for 2 days he is stuck helping a customer. This cannot be easily extracted from all the issues but affects project progress. I would like to be able to find this out with a quick glance in our system.

So, I got this idea from BaseCamp about the weekly plans and daily reports. These plans and reports are really brief, 30 seconds to write. So these do not impact on team time or anything, Instead they actually help each team member to focus on the right thing and help management to see what is going on.

Also, the element, that this questions are sent out as email, to which a team member responds to "fill his plan/report" makes it even more effective and less disruptive.

Robin Shen commented 2 years ago

jbauer's build approach combined with api is the way to go. You may create a report project, and setup three CI jobs:

  1. weekly runs automatically at start of each week calling the api to create todo in this week issue for every developer, and close all weekly/daily issues last week
  2. daily runs automatically at end of each day calling the api to create done today issue for every developer
  3. report runs every 10 min to generate markdown report based on weekly and daily issue and get the report published.

Instead of calling restful api which is quite verbose, you may call groovy script to do the job in the job via @script:scriptname.

This way everything is automated, and you get an updated report of what is to do and what is being doing.

Robin Shen commented 2 years ago

Every developer only needs to reply the issue via email, and report job collects todo/doing information from comment of corresponding issues.

Robin Shen changed state to 'Closed' 2 years ago
Previous Value Current Value
Open
Closed
issue 1 of 1
Type
Question
Priority
Normal
Assignee
Not assigned
Issue Votes (1)
Watchers (6)
Reference
onedev/server#717
Please wait...
Page is in error, reload to recover