Update "Use Origin Trials in Microsoft Edge" per new OT portal (a backup PR) #493
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
# This workflow is used to auto-create ADO work items for new PRs. | |
name: Track new PRs on ADO | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
create_ado_item: | |
name: Create an ADO work item for new PRs | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: MicrosoftEdge/action-issue-to-workitem@main | |
env: | |
ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
with: | |
ado_organization: 'microsoft' | |
ado_project: 'Edge' | |
ado_tags: 'edge-docs-github-pr' | |
ado_area_path: 'Edge\Web Experience\Ecosystem\Content' | |
ado_work_item_type: 'Deliverable' | |
ado_dont_check_if_exist: true | |
ado_product: 'Documentation' |