Install Server-Media-foundation in Windows Server core #59
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 GitHub Bugs with ADO | |
on: | |
issues: | |
types: | |
[ | |
closed, | |
edited, | |
deleted, | |
reopened, | |
assigned, | |
unassigned, | |
labeled, | |
unlabeled, | |
] | |
issue_comment: | |
jobs: | |
build: | |
name: Sync with ADO from GitHub | |
if: ${{ github.event.label.name == 'bug' || contains(github.event.issue.labels.*.name, 'bug') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Trigger GitHub Sync" | |
uses: microsoft/gh-sync@main | |
with: | |
ado-organization-url: ${{ secrets.ADO_PROJECT_URL }} | |
ado-project: ${{ secrets.ADO_PROJECT_NAME }} | |
ado-area-path: ${{ secrets.ADO_AREA_PATH }} | |
issue-number: ${{ github.event.issue.number }} | |
github-repo: "microsoft/Windows-Containers" | |
ado-token: ${{ secrets.ADO_SYNC_TOKEN }} | |
github-token: ${{ secrets.GHP_TOKEN }} |