adds support for base url #6101
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
if: contains(github.event.issue.labels.*.name, 'generator') | |
with: | |
project: 'https://github.com/microsoft/kiota/projects/9' |