Added assigning of triage label and adding to the board. Adding PR and issue templates (#176)
* Added tast version bump docs. Added PR template. * Added auto assign for issues - adding to board, adding of triage label * Added issue template * Fixed action * Removed line
This commit is contained in:
Родитель
8e72e673e1
Коммит
29b5a0ae21
|
@ -0,0 +1,13 @@
|
|||
**Task name**: <Name of changed or new pipeline task>
|
||||
|
||||
**Description**: <Describe your changes here>
|
||||
|
||||
**Documentation changes required:** (Y/N) <Please mark if documentation changes are required>
|
||||
|
||||
**Added unit tests:** (Y/N) <Please mark if unit tests were added or updated according changes>
|
||||
|
||||
**Attached related issue:** (Y/N) <Please add link to related issue here>
|
||||
|
||||
**Checklist**:
|
||||
- [ ] Task version was bumped - please check [instruction](https://github.com/microsoft/azure-pipelines-tasks/blob/master/docs/taskversionbumping.md) how to do it
|
||||
- [ ] Checked that applied changes work as expected
|
|
@ -0,0 +1,20 @@
|
|||
name: Assign triage label to new tickets and add to project board
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
jobs:
|
||||
assignTriagenAndAddToProject:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: "Add triage label"
|
||||
uses: actions-ecosystem/action-add-labels@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
labels: triage
|
||||
- name: "Assign issues to project board"
|
||||
uses: srggrs/assign-one-project-github-action@1.2.0
|
||||
with:
|
||||
project: 'https://github.com/orgs/microsoft/projects/48'
|
||||
column_name: 'Backlog'
|
|
@ -0,0 +1,7 @@
|
|||
# Bumping task version
|
||||
To bump task version - please change 'version' field in task.json and task.loc.json files following the steps below:
|
||||
1. Check current Azure DevOps sprint - https://whatsprintis.it/
|
||||
2. If sprint number differs from current minor number - set it to current sprint number, set patch to 0
|
||||
3. If the minor version and the sprint number are the same - increase patch number
|
||||
|
||||
For major changes (large behavioral changes or changes without backward support) increase major number.
|
|
@ -0,0 +1,50 @@
|
|||
## Note
|
||||
Issues in this repo are for tracking bugs, feature requests and questions for the tasks in this repo
|
||||
|
||||
For a list:
|
||||
https://github.com/microsoft/app-store-vsts-extension/tree/master/Tasks
|
||||
|
||||
If you have an issue or request for the Azure Pipelines service, use developer community instead:
|
||||
|
||||
https://developercommunity.visualstudio.com/spaces/21/index.html )
|
||||
|
||||
## Required Information
|
||||
|
||||
Entering this information will route you directly to the right team and expedite traction.
|
||||
|
||||
**Question, Bug, or Feature?**
|
||||
*Type*: here
|
||||
|
||||
**Enter Task Name**: here
|
||||
|
||||
list here (V# not needed):
|
||||
https://github.com/microsoft/app-store-vsts-extension/tree/master/Tasks
|
||||
|
||||
## Environment
|
||||
- Server - Azure Pipelines or TFS on-premises?
|
||||
|
||||
- If using TFS on-premises, provide the version:
|
||||
|
||||
- If using Azure Pipelines, provide the account name, team project name, build definition name/build number:
|
||||
|
||||
|
||||
- Agent - Hosted or Private:
|
||||
|
||||
- If using Hosted agent, provide agent queue name:
|
||||
|
||||
- If using private agent, provide the OS of the machine running the agent and the agent version:
|
||||
|
||||
## Issue Description
|
||||
|
||||
[Include task name(s), screenshots and any other relevant details]
|
||||
|
||||
### Task logs
|
||||
|
||||
[Enable debug logging and please provide the zip file containing all the logs for a speedy resolution]
|
||||
|
||||
## Troubleshooting
|
||||
Checkout how to troubleshoot failures and collect debug logs: https://docs.microsoft.com/en-us/vsts/build-release/actions/troubleshooting
|
||||
|
||||
### Error logs
|
||||
|
||||
[Insert error from the logs here for a quick overview]
|
Загрузка…
Ссылка в новой задаче