-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathm365agents.local.yml
More file actions
83 lines (74 loc) · 2.89 KB
/
Copy pathm365agents.local.yml
File metadata and controls
83 lines (74 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# yaml-language-server: $schema=https://aka.ms/m365-agents-toolkits/v1.11/yaml.schema.json
# Visit https://aka.ms/teamsfx-v5.0-guide for details on this file
# Visit https://aka.ms/teamsfx-actions for details on actions
version: v1.11
provision:
# Creates an app
- uses: teamsApp/create
with:
# app name
name: devika_bot_new${{APP_NAME_SUFFIX}}
# Write the information of created resources into environment file for
# the specified environment variable(s).
writeToEnvironmentFile:
teamsAppId: TEAMS_APP_ID
# Create or reuse an existing Microsoft Entra application for bot.
- uses: aadApp/create
with:
# The Microsoft Entra application's display name
name: devika_bot_new${{APP_NAME_SUFFIX}}
generateClientSecret: true
generateServicePrincipal: true
signInAudience: AzureADMultipleOrgs
writeToEnvironmentFile:
# The Microsoft Entra application's client id created for bot.
clientId: BOT_ID
# The Microsoft Entra application's client secret created for bot.
clientSecret: SECRET_BOT_PASSWORD
# The Microsoft Entra application's object id created for bot.
objectId: BOT_OBJECT_ID
# Create or update the bot registration on dev.botframework.com
- uses: botFramework/create
with:
botId: ${{BOT_ID}}
name: devika_bot_new
messagingEndpoint: ${{BOT_ENDPOINT}}/api/messages
description: ""
channels:
- name: msteams
# Validate using manifest schema
- uses: teamsApp/validateManifest
with:
# Path to manifest template
manifestPath: ./appPackage/manifest.json
# Build app package with latest env value
- uses: teamsApp/zipAppPackage
with:
# Path to manifest template
manifestPath: ./appPackage/manifest.json
outputZipPath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
outputFolder: ./appPackage/build
# Validate app package using validation rules
- uses: teamsApp/validateAppPackage
with:
# Relative path to this file. This is the path for built zip file.
appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
# Apply the app manifest to an existing app in
# Developer Portal.
# Will use the app id in manifest file to determine which app to update.
- uses: teamsApp/update
with:
# Relative path to this file. This is the path for built zip file.
appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip
deploy:
# Generate runtime environment variables
- uses: file/createOrUpdateEnvironmentFile
with:
target: ./.env
envs:
CLIENT_ID: ${{BOT_ID}}
CLIENT_SECRET: ${{SECRET_BOT_PASSWORD}}
TENANT_ID: ${{TEAMS_APP_TENANT_ID}}
AZURE_OPENAI_API_KEY: ${{SECRET_AZURE_OPENAI_API_KEY}}
AZURE_OPENAI_MODEL_DEPLOYMENT_NAME: ${{AZURE_OPENAI_MODEL_DEPLOYMENT_NAME}}
AZURE_OPENAI_ENDPOINT: ${{AZURE_OPENAI_ENDPOINT}}