Skip to content

Commit

Permalink
[JS] fix: Update teamsapp.yml (#1917)
Browse files Browse the repository at this point in the history
Fixed bot name

## Linked issues

closes: #minor

## Details

Fixed bot name in teamsapp.yml to be consistent with teamsapp.local.yml

#### Change details

> Describe your changes, with screenshots and code snippets as
appropriate

Changed 
```name: TeamsChef${{APP_NAME_SUFFIX}}```
to 
``` name: CardGazer${{APP_NAME_SUFFIX}}```
**code snippets**: 

**screenshots**:

## Attestation Checklist

- [X] My code follows the style guidelines of this project

- I have checked for/fixed spelling, linting, and other errors
- I have commented my code for clarity
- I have made corresponding changes to the documentation (updating the
doc strings in the code is sufficient)
- My changes generate no new warnings
- I have added tests that validates my changes, and provides sufficient
test coverage. I have tested with:
  - Local testing
  - E2E testing in Teams
- New and existing unit tests pass locally with my changes

### Additional information

> Feel free to add other relevant information below
  • Loading branch information
xtophs authored Aug 7, 2024
1 parent 316810c commit 29f1887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/c.vision-cardGazer/teamsapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ provision:
# Automates the creation of a Teams app registration and saves the App ID to an environment file.
- uses: teamsApp/create
with:
name: TeamsChef${{APP_NAME_SUFFIX}}
name: CardGazer${{APP_NAME_SUFFIX}}
writeToEnvironmentFile:
teamsAppId: TEAMS_APP_ID

# Automates the creation an Azure AD app registration which is required for a bot.
# The Bot ID (AAD app client ID) and Bot Password (AAD app client secret) are saved to an environment file.
- uses: botAadApp/create
with:
name: TeamsChef${{APP_NAME_SUFFIX}}
name: CardGazer${{APP_NAME_SUFFIX}}
writeToEnvironmentFile:
botId: BOT_ID
botPassword: SECRET_BOT_PASSWORD
Expand Down

0 comments on commit 29f1887

Please sign in to comment.