Bump actions/setup-dotnet from 1.9.1 to 2 #6102
Workflow file for this run
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: Auto Assign to Project(s) | |
on: | |
issues: | |
types: [opened, labeled, reopened] | |
pull_request: | |
types: [opened, labeled, reopened] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: Assign to One Project | |
steps: | |
- name: Assign Java issues to Java project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'Java') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/7' | |
- name: Assign Go issues to Go project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'Go') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/8' | |
- name: Assign Ruby issues to Ruby project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'Ruby') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/6' | |
- name: Assign PHP issues to PHP project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'PHP') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/4' | |
- name: Assign Python issues to Python project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'Python') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/3' | |
- name: Assign TypeScript issues to TypeScript project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'TypeScript') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/2' | |
- name: Assign CSharp issues to CSharp project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'CSharp') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/5' | |
- name: Assign Generator issues to Generator project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'generator') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/9' | |
- name: Assign Generator issues to Generator project | |
uses: srggrs/assign-one-project-github-action@1.3.1 | |
if: contains(github.event.issue.labels.*.name, 'CLI') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/10' |