From f5a7fc7f4af363caa9788f93d855259b8d7905b0 Mon Sep 17 00:00:00 2001 From: Patrick Brosset Date: Tue, 8 Feb 2022 10:26:02 +0100 Subject: [PATCH] New ADO syncing action --- .github/workflows/ado.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ado.yml diff --git a/.github/workflows/ado.yml b/.github/workflows/ado.yml new file mode 100644 index 0000000..32c0f36 --- /dev/null +++ b/.github/workflows/ado.yml @@ -0,0 +1,21 @@ +name: Sync issue to Azure DevOps work item + +on: + issues: + types: + [labeled] + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - uses: captainbrosset/github-actions-issue-to-work-item@simple-sync + env: + ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" + github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}" + with: + label: 'tracked' + ado_organization: 'microsoft' + ado_project: 'Edge' + ado_tags: 'DevToolsGitHubSync' + ado_area_path: 'Edge\Dev Experience\Developer Tools' \ No newline at end of file