FHIR Server for Azure - How to retrieve FHIR Resource using logical ID leveraging the backend POINT READ Operation type in Cosmos DB #2192
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync issue to Azure DevOps work item | |
on: | |
issues: | |
types: | |
[opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned] | |
jobs: | |
alert: | |
permissions: | |
actions: read | |
contents: read | |
issues: write | |
runs-on: ubuntu-latest | |
name: Sync to DevOps workflow | |
steps: | |
- uses: danhellem/github-actions-issue-to-work-item@master | |
env: | |
ado_token: "${{ secrets.AZURE_DEVOPS_TOKEN }}" | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
ado_organization: "${{ secrets.DEVOPS_ORGANIZATION }}" | |
ado_project: "${{ secrets.DEVOPS_PROJECT }}" | |
ado_area_path: "${{ secrets.DEVOPS_AREA_PATH }}" | |
ado_iteration_path: "${{ secrets.DEVOPS_ITERATION_PATH }}" | |
ado_wit: "User Story" | |
ado_new_state: "New" | |
ado_active_state: "Active" | |
ado_close_state: "Closed" | |
ado_bypassrules: true | |
log_level: 100 |