Skip to content

Commit

Permalink
Create github-sync-azuredevops.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
live-dev999 committed May 11, 2022
1 parent be4001f commit 187ed25
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/github-sync-azuredevops.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Sync issue to Azure DevOps work item

on:
issues:
types:
[opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]

jobs:
alert:
runs-on: ubuntu-latest
steps:
- uses: danhellem/github-actions-issue-to-work-item@master
env:
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}"
github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}"
ado_organization: "o2-bionics-llc"
ado_project: "O2NextGen"
ado_area_path: "optional_area_path\\optional_area_path"
ado_iteration_path: "optional_iteration_path\\optional_iteration_path"
ado_wit: "User Story"
ado_new_state: "New"
ado_active_state: "Active"
ado_close_state: "Closed"
ado_bypassrules: true
log_level: 100

0 comments on commit 187ed25

Please sign in to comment.