[28.x] Update app baselines package version. New value: 28.0.46665.49655 (+ 1 more update(s)) #12769
Workflow file for this run
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: Pull request Labeler | |
| on: | |
| pull_request_target: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| defaults: | |
| run: | |
| shell: pwsh | |
| jobs: | |
| Label: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'microsoft' | |
| steps: | |
| - name: Label pull request | |
| uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1 | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
| sync-labels: true | |
| - name: Label community contribution | |
| if: github.event.pull_request.head.repo.full_name != github.repository | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh api /repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels -f "labels[]=From Fork" -H "Accept: application/vnd.github.v3+json" -H "X-GitHub-Api-Version: 2022-11-28" |