-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Researcher | Client Advisor - workflows, code owners and dependabot added to accelerators #101
Open
Roopan-Microsoft
wants to merge
7
commits into
dev
Choose a base branch
from
psl-workflow-codeowners
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c12643c
workflows and codeowners added to accelerators
Roopan-Microsoft e80f307
Updated for test and workflow
Roopan-Microsoft 939b62b
temp fix for code coverage
Roopan-Microsoft 7dcdf45
removed test pipeline for now, will add in next PR
Roopan-Microsoft 81f071f
removed lint related files
Roopan-Microsoft b187485
Add files via upload
Roopan-Microsoft 5d03cfc
Add files via upload
Roopan-Microsoft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in the repo. | ||
* @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft | ||
|
||
# Specific directory ownership | ||
/ClientAdvisor/ @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft | ||
|
||
/ResearchAssistant/ @Avijit-Microsoft @Roopan-Microsoft @Prajwal-Microsoft |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
name: CI-Validate Deployment-Client Advisor | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'ClientAdvisor/**' | ||
schedule: | ||
- cron: '0 6,18 * * *' # Runs at 6:00 AM and 6:00 PM GMT | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Azure CLI | ||
run: | | ||
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash | ||
az --version # Verify installation | ||
|
||
- name: Login to Azure | ||
run: | | ||
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }} | ||
|
||
- name: Install Bicep CLI | ||
run: az bicep install | ||
|
||
- name: Generate Resource Group Name | ||
id: generate_rg_name | ||
run: | | ||
echo "Generating a unique resource group name..." | ||
TIMESTAMP=$(date +%Y%m%d%H%M%S) | ||
COMMON_PART="pslautomationCli" | ||
UNIQUE_RG_NAME="${COMMON_PART}${TIMESTAMP}" | ||
echo "RESOURCE_GROUP_NAME=${UNIQUE_RG_NAME}" >> $GITHUB_ENV | ||
echo "Generated RESOURCE_GROUP_PREFIX: ${UNIQUE_RG_NAME}" | ||
|
||
- name: Check and Create Resource Group | ||
id: check_create_rg | ||
run: | | ||
echo "RESOURCE_GROUP: ${{ env.RESOURCE_GROUP_NAME }}" | ||
set -e | ||
echo "Checking if resource group exists..." | ||
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }}) | ||
if [ "$rg_exists" = "false" ]; then | ||
echo "Resource group does not exist. Creating..." | ||
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location uksouth || { echo "Error creating resource group"; exit 1; } | ||
else | ||
echo "Resource group already exists." | ||
fi | ||
|
||
- name: Generate Unique Solution Prefix | ||
id: generate_solution_prefix | ||
run: | | ||
set -e | ||
COMMON_PART="pslc" | ||
TIMESTAMP=$(date +%s) | ||
UPDATED_TIMESTAMP=$(echo $TIMESTAMP | tail -c 3) | ||
UNIQUE_SOLUTION_PREFIX="${COMMON_PART}${UPDATED_TIMESTAMP}" | ||
echo "SOLUTION_PREFIX=${UNIQUE_SOLUTION_PREFIX}" >> $GITHUB_ENV | ||
echo "Generated SOLUTION_PREFIX: ${UNIQUE_SOLUTION_PREFIX}" | ||
|
||
- name: Deploy Bicep Template | ||
id: deploy | ||
run: | | ||
set -e | ||
az deployment group create \ | ||
--resource-group ${{ env.RESOURCE_GROUP_NAME }} \ | ||
--template-file ClientAdvisor/Deployment/bicep/main.bicep \ | ||
--parameters solutionPrefix=${{ env.SOLUTION_PREFIX }} cosmosLocation=eastus2 | ||
|
||
- name: Update PowerBI URL | ||
if: success() | ||
run: | | ||
set -e | ||
|
||
COMMON_PART="-app-service" | ||
application_name="${{ env.SOLUTION_PREFIX }}${COMMON_PART}" | ||
echo "Updating application: $application_name" | ||
|
||
# Log the Power BI URL being set | ||
echo "Setting Power BI URL: ${{ vars.VITE_POWERBI_EMBED_URL }}" | ||
|
||
# Update the application settings | ||
az webapp config appsettings set --name "$application_name" --resource-group "${{ env.RESOURCE_GROUP_NAME }}" --settings VITE_POWERBI_EMBED_URL="${{ vars.VITE_POWERBI_EMBED_URL }}" | ||
|
||
# Restart the web app | ||
az webapp restart --resource-group "${{ env.RESOURCE_GROUP_NAME }}" --name "$application_name" | ||
|
||
echo "Power BI URL updated successfully for application: $application_name." | ||
|
||
- name: Delete Bicep Deployment | ||
if: success() | ||
run: | | ||
set -e | ||
echo "Checking if resource group exists..." | ||
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }}) | ||
if [ "$rg_exists" = "true" ]; then | ||
echo "Resource group exist. Cleaning..." | ||
az group delete \ | ||
--name ${{ env.RESOURCE_GROUP_NAME }} \ | ||
--yes \ | ||
--no-wait | ||
echo "Resource group deleted... ${{ env.RESOURCE_GROUP_NAME }}" | ||
else | ||
echo "Resource group does not exists." | ||
fi | ||
|
||
- name: Send Notification on Failure | ||
if: failure() | ||
run: | | ||
RUN_URL="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
|
||
# Construct the email body | ||
EMAIL_BODY=$(cat <<EOF | ||
{ | ||
"body": "<p>Dear Team,</p><p>We would like to inform you that the Client Advisor Automation process has encountered an issue and has failed to complete successfully.</p><p><strong>Build URL:</strong> ${RUN_URL}<br> ${OUTPUT}</p><p>Please investigate the matter at your earliest convenience.</p><p>Best regards,<br>Your Automation Team</p>" | ||
} | ||
EOF | ||
) | ||
|
||
# Send the notification | ||
curl -X POST "${{ secrets.LOGIC_APP_URL }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d "$EMAIL_BODY" || echo "Failed to send notification" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
name: CI-Validate Deployment-Research Assistant | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'ResearchAssistant/**' | ||
schedule: | ||
- cron: '0 6,18 * * *' # Runs at 6:00 AM and 6:00 PM GMT | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Azure CLI | ||
run: | | ||
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash | ||
az --version # Verify installation | ||
|
||
- name: Login to Azure | ||
run: | | ||
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }} | ||
|
||
- name: Install Bicep CLI | ||
run: az bicep install | ||
|
||
- name: Generate Resource Group Name | ||
id: generate_rg_name | ||
run: | | ||
echo "Generating a unique resource group name..." | ||
TIMESTAMP=$(date +%Y%m%d%H%M%S) | ||
COMMON_PART="pslautomationRes" | ||
UNIQUE_RG_NAME="${COMMON_PART}${TIMESTAMP}" | ||
echo "RESOURCE_GROUP_NAME=${UNIQUE_RG_NAME}" >> $GITHUB_ENV | ||
echo "Generated Resource_GROUP_PREFIX: ${UNIQUE_RG_NAME}" | ||
|
||
- name: Check and Create Resource Group | ||
id: check_create_rg | ||
run: | | ||
set -e | ||
echo "Checking if resource group exists..." | ||
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }}) | ||
if [ "$rg_exists" = "false" ]; then | ||
echo "Resource group does not exist. Creating..." | ||
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location eastus2 || { echo "Error creating resource group"; exit 1; } | ||
else | ||
echo "Resource group already exists." | ||
fi | ||
|
||
- name: Generate Unique Solution Prefix | ||
id: generate_solution_prefix | ||
run: | | ||
set -e | ||
COMMON_PART="pslr" | ||
TIMESTAMP=$(date +%s) | ||
UPDATED_TIMESTAMP=$(echo $TIMESTAMP | tail -c 3) | ||
UNIQUE_SOLUTION_PREFIX="${COMMON_PART}${UPDATED_TIMESTAMP}" | ||
echo "SOLUTION_PREFIX=${UNIQUE_SOLUTION_PREFIX}" >> $GITHUB_ENV | ||
echo "Generated SOLUTION_PREFIX: ${UNIQUE_SOLUTION_PREFIX}" | ||
|
||
- name: Deploy Bicep Template | ||
id: deploy | ||
run: | | ||
set -e | ||
az deployment group create \ | ||
--resource-group ${{ env.RESOURCE_GROUP_NAME }} \ | ||
--template-file ResearchAssistant/Deployment/bicep/main.bicep \ | ||
--parameters solutionPrefix=${{ env.SOLUTION_PREFIX }} | ||
|
||
- name: Delete Bicep Deployment | ||
if: success() | ||
run: | | ||
set -e | ||
echo "Checking if resource group exists..." | ||
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }}) | ||
if [ "$rg_exists" = "true" ]; then | ||
echo "Resource group exist. Cleaning..." | ||
az group delete \ | ||
--name ${{ env.RESOURCE_GROUP_NAME }} \ | ||
--yes \ | ||
--no-wait | ||
echo "Resource group deleted... ${{ env.RESOURCE_GROUP_NAME }}" | ||
else | ||
echo "Resource group does not exists." | ||
fi | ||
|
||
- name: Send Notification on Failure | ||
if: failure() | ||
run: | | ||
RUN_URL="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
|
||
# Construct the email body | ||
EMAIL_BODY=$(cat <<EOF | ||
{ | ||
"body": "<p>Dear Team,</p><p>We would like to inform you that the Research Assistant Automation process has encountered an issue and has failed to complete successfully.</p><p><strong>Build URL:</strong> ${RUN_URL}<br> ${OUTPUT}</p><p>Please investigate the matter at your earliest convenience.</p><p>Best regards,<br>Your Automation Team</p>" | ||
} | ||
EOF | ||
) | ||
|
||
# Send the notification | ||
curl -X POST "${{ secrets.LOGIC_APP_URL }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d "$EMAIL_BODY" || echo "Failed to send notification" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build ClientAdvisor Docker Images | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ClientAdvisor/** | ||
pull_request: | ||
branches: [main] | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
paths: | ||
- ClientAdvisor/** | ||
merge_group: | ||
|
||
jobs: | ||
docker-build: | ||
strategy: | ||
matrix: | ||
include: | ||
- app_name: byc-wa-app | ||
dockerfile: ClientAdvisor/App/WebApp.Dockerfile | ||
password_secret: DOCKER_PASSWORD | ||
- app_name: byc-wa-fn | ||
dockerfile: ClientAdvisor/AzureFunction/Dockerfile | ||
password_secret: DOCKER_PASSWORD | ||
|
||
uses: ./.github/workflows/build-docker.yml | ||
with: | ||
registry: bycwacontainerreg.azurecr.io | ||
username: bycwacontainerreg | ||
password_secret: ${{ matrix.password_secret }} | ||
app_name: ${{ matrix.app_name }} | ||
dockerfile: ${{ matrix.dockerfile }} | ||
push: true # Adjust this logic as necessary | ||
secrets: inherit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Reusable Docker build and push workflow | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
registry: | ||
required: true | ||
type: string | ||
username: | ||
required: true | ||
type: string | ||
password_secret: | ||
required: true | ||
type: string | ||
app_name: | ||
required: true | ||
type: string | ||
dockerfile: | ||
required: true | ||
type: string | ||
push: | ||
required: true | ||
type: boolean | ||
secrets: | ||
DOCKER_PASSWORD: | ||
required: true | ||
|
||
jobs: | ||
docker-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Docker Login | ||
if: ${{ inputs.push }} | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ inputs.registry }} | ||
username: ${{ inputs.username }} | ||
password: ${{ secrets[inputs.password_secret] }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Get current date | ||
id: date | ||
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | ||
|
||
- name: Build Docker Image and optionally push | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: . | ||
file: ${{ inputs.dockerfile }} | ||
push: ${{ inputs.push }} | ||
cache-from: type=registry,ref=${{ inputs.registry }}/${{ inputs.app_name}}:latest | ||
tags: | | ||
${{ inputs.registry }}/${{ inputs.app_name}}:dev | ||
${{ inputs.registry }}/${{ inputs.app_name}}:${{ steps.date.outputs.date }}_${{ github.run_number }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build ResearchAssistant Docker Images | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ResearchAssistant/** | ||
pull_request: | ||
branches: [main] | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
paths: | ||
- ResearchAssistant/** | ||
merge_group: | ||
|
||
jobs: | ||
docker-build: | ||
strategy: | ||
matrix: | ||
include: | ||
- app_name: byoaia-app | ||
dockerfile: ResearchAssistant/App/WebApp.Dockerfile | ||
password_secret: DOCKER_PASSWORD_RESEARCHASSISTANT | ||
|
||
uses: ./.github/workflows/build-docker.yml | ||
with: | ||
registry: byoaiacontainerreg.azurecr.io | ||
username: byoaiacontainerreg | ||
password_secret: ${{ matrix.password_secret }} | ||
app_name: ${{ matrix.app_name }} | ||
dockerfile: ${{ matrix.dockerfile }} | ||
push: true # Adjust this logic as necessary | ||
secrets: inherit |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to handle based on branch