Is there any way to embed reports into our site via an API or iframe without giving users access in Entra ID? #1105
This file contains hidden or 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, closed, reopened] | |
| issue_comment: | |
| types: [created, edited, deleted] | |
| 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: "devdiv" | |
| ado_project: "OnlineServices" | |
| ado_area_path: "OnlineServices\\PlaywrightService" | |
| ado_iteration_path: "OnlineServices\\Dilithium\\CY24 Q2" | |
| ado_wit: "Issue" | |
| ado_new_state: "New" | |
| ado_active_state: "Active" | |
| ado_close_state: "Closed" | |
| ado_bypassrules: false | |
| log_level: 100 |