[BUG]: Azure Web App Deploy v1.x: .NET 10 runtime stack not working in dropdown #4963
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: Labeler | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: damccorm/tag-ur-it@master | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: "./issue-rules.yml" | |
| - name: Set Node.js 20.x | |
| uses: actions/setup-node@master | |
| with: | |
| version: 20.x | |
| # Need to explicitly install @octokit/rest seperately or else it will mess with our typings. | |
| - run: npm ci && npm install @octokit/[email protected] | |
| - name: File bugs | |
| run: node ci/file-bugs.js | |
| env: | |
| GITHUB_PAT: "${{ secrets.GITHUB_TOKEN }}" | |
| AZP_PAT: "${{ secrets.AZP_TOKEN }}" |