Skip to content

Commit

Permalink
New workflow to sync issues to ADO
Browse files Browse the repository at this point in the history
  • Loading branch information
captainbrosset committed Oct 9, 2023
1 parent b1820ab commit 3af5581
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ado-issue-tracker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow is used to auto-create ADO work items when issues are labeled with 'tracked'.

name: Sync issue to Azure DevOps work item

on:
issues:
types:
[labeled]

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: MicrosoftEdge/action-issue-to-workitem@main
env:
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}"
github_token: "${{ secrets.GITHUB_TOKEN }}"
with:
label: 'tracked'
ado_organization: 'microsoft'
ado_project: 'Edge'
ado_tags: 'DevToolsGitHubSync'
ado_area_path: 'Edge\Web Experience\Developer Tools'

0 comments on commit 3af5581

Please sign in to comment.