For those who have setup Azure DevOps with a Collection (Not an Organization), is it possible to do the following:
Add custom "Process" fields into the like say "States" on the agile process? For some reason this button is disabled on the "Collections" options
It seems that you are using Inheritance
process. If you want to edit the process(e.g. add new state to work item), you need to create an inherited process.
This option is in Collection Settings -> Process
. Then you could custom the process in the inherited process.
Is it possible to add a more columns to our sprint board?
Since you are using the Inheritance Process and Collection, it seems that there is no option to add the column in the Sprint -> taskboard
.
By the way, this feature supports in the Organizaiton.
Here is the doc about the taskboard, you could refer to it.
Updates:
Since you are using the hosted Process, you could try the following steps to add the new state and column.
Here are the steps:
Export
option.WorkItem Tracking -> Process ->ProcessConfiguration.xml
.For example:
<States>
<State type="Proposed" value="To Do" />
<State type="InProgress" value="In Progress" />
<State type="InProgress" value="Review" />
<State type="Complete" value="Done" />
</States>
For more details how to use WitAdmin command to export and import process configure file. Please refer our official tutorial here--Import and export process configuration .