First, you’ll need to fork the repository to your organization:
https://github.com/microsoft/genaiops-azureaisdk-template/To enable GitHub Actions in your forked repository:
Clone your forked repository to your local machine:
# Clone the repository
git clone https://github.com/your-org/genaiops-azureaisdk-template.git
# Navigate into the project directory
cd genaiops-azureaisdk-template
View your remote repositories:
# View your remote repositories
git remote -v
# Should show:
# origin https://github.com/your-org/genaiops-azureaisdk-template.git (fetch)
# origin https://github.com/your-org/genaiops-azureaisdk-template.git (push)
# upstream https://github.com/original-org/genaiops-azureaisdk-template.git (fetch)
# upstream https://github.com/original-org/genaiops-azureaisdk-template.git (push)
Before making changes, create a new feature branch:
# Ensure you're on the main branch and up-to-date
git checkout main
# Create and switch to a new feature branch
git checkout -b feature/your-feature-name
# Example:
git checkout -b feature/add-prompty-file
When naming your feature branches, follow these conventions:
feature/ for new featuresbugfix/ for bug fixeshotfix/ for urgent fixesExamples:
feature/user-authenticationbugfix/login-validationhotfix/security-patchNow that your development environment has code set up, you can: