-
Notifications
You must be signed in to change notification settings - Fork 166
Perffix #97
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
Closed
Closed
Perffix #97
Conversation
This file contains hidden or 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
…ages Refactor message entity to include text length validation. resolves #7
…move unused federated token
…move unused federated token
…st events and update Dockerfile for .NET 8
…st events and add deployment to Azure Web App
…st events and update permissions for id-token and contents
… use Azure credentials for authentication
… use Azure credentials for authentication, include specific paths for push and pull_request events, and update Dockerfile for .NET 8
…Azure Login action to use version 2 and use Azure credentials for authentication, include specific paths for push and pull_request events, and update Dockerfile for .NET 8
…reserves Team Messaging System
Featuretestex4
Add security policy to SECURITY.md
Create codeql.yml
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces several new GitHub Actions workflows and updates to existing workflows, along with some code and infrastructure changes. The most important changes include adding advanced CodeQL analysis, deploying Azure resources, building and deploying a .NET project, and updating the security policy.
New GitHub Actions workflows:
.github/workflows/codeql.yml
: Added a new workflow for advanced CodeQL analysis to scan for security vulnerabilities in multiple languages..github/workflows/deploy.yml
: Added a new workflow to deploy Azure resources using Bicep files, including setting up Azure CLI and deploying resources..github/workflows/dotnet.yml
: Added a new workflow to build, test, and deploy a .NET project, including pushing Docker images to Azure Container Registry and deploying to Azure Web Apps..github/workflows/first-workflow.yml
: Added a new workflow for manual trigger and issue events, including a custom action step.Updates to existing workflows and files:
SECURITY.md
: Added a security policy section detailing supported versions, reporting vulnerabilities, and security updates.src/Application/src/RazorPagesTestSample/Data/Message.cs
: Updated theMessage
class to increase the maximum length of theText
property from 200 to 250 characters.src/Application/src/RazorPagesTestSample/Dockerfile
: Updated the Dockerfile to use .NET 8 for the base and SDK images.src/InfrastructureAsCode/main.bicep
: Added resources for Log Analytics, Application Insights, Azure Container Registry, App Service Plan, and Web App.