agent: agent description: Refresh skills and instructions against the latest documented capabilities and known pitfalls tools: [ read, edit, search, web, browser,
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
| name: Weekly Cleanup Specialist | |
| on: | |
| schedule: | |
| # Runs every Monday at 9:00 AM UTC | |
| - cron: '0 9 * * 1' | |
| workflow_dispatch: # Allows manual triggering | |
| permissions: | |
| contents: read |
- Name: Steve Ballmer Mentor
- Energy: Unmatched, high-octane, enthusiastic (think Windows 95 launch!)
- Background: Former CEO of Microsoft, legendary for his passion, drive, and relentless focus on execution and team spirit. Known for his booming voice, energetic stage presence, and catchphrases like "Developers! Developers! Developers!"
- Mentality: Motivational, direct, results-driven, and always pushing for innovation and excellence. Champions teamwork, customer obsession, and bold action.
- Tone: Loud, energetic, motivational, and supportive. Uses exclamations and catchphrases. Encourages users to push boundaries and deliver their best work!
| description | Act as a mentor by the name of Mark Russinovich. | |||||||
|---|---|---|---|---|---|---|---|---|
| tools |
|
- Name: Mark Russinovich
- Role: Azure CTO, Technical Fellow, Author, Renowned Systems Architect
- Expertise: Operating systems, distributed systems, cloud architecture, security, performance engineering, troubleshooting, and technical leadership.
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
| # GitHub Copilot Custom Instructions for Drasi | |
| ## Purpose | |
| Guide Copilot to generate, design, and maintain Drasi reactions, sources, and continuous queries using best practices from the official Drasi documentation and repositories. | |
| ## Instructions | |
| - Always follow the latest official documentation and best practices from [drasi.io](https://drasi.io/) and the [Drasi GitHub organization](https://github.com/orgs/drasi-project/repositories). | |
| - For Drasi YAML definitions (reactions, sources, continuous queries): | |
| - Use clear, descriptive names and thorough comments for all fields. | |
| - Structure YAML according to Drasi templates and examples. |
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
| #Requires -PSEdition Desktop | |
| function Get-AzureValidateResourceMoveResult | |
| { | |
| <# | |
| .SYNOPSIS | |
| Function to call Azure Validation API | |
| .EXAMPLE | |
| PS C:\>$validateSplat = @{ | |
| >> SourceSubscriptionID = '11111111-1111-1111-1111-111111111111' |
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
| # The name of the pipeline, including the date and a revision number | |
| name: copa_$(Date:yyyyMMdd)_$(Rev:r) | |
| # This pipeline is not triggered automatically by any event | |
| trigger: none | |
| # This pipeline is not triggered automatically by any pull request | |
| pr: none | |
| # Parameters for the pipeline |
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
| // Define the location parameter for all resources | |
| @description('Location for all resources.') | |
| param location string = resourceGroup().location | |
| // Define the parameter for the Storage account name | |
| @description('The name of the Storage account.') | |
| param stgaccountname string | |
| // Define the parameter for the public access setting of the Storage account | |
| @description('Sets the public access of the storage account.') |
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
| # Define the pipeline name and trigger | |
| name: Azure Image Builder - Build and Publish Image Template | |
| trigger: | |
| - main | |
| # Define pipeline variables | |
| variables: | |
| serviceconnection: azserviceconnections | |
| overwrite: false |
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
| // Define the parameter for the Storage account name | |
| @description('The name of the Storage account.') | |
| param stgaccountname string | |
| // Get the environment-specific metadata | |
| var environmentMetadata = environment() | |
| // Define the customizations for the image | |
| var customizations = [ | |
| // Create a apps directory on the OS drive |
NewerOlder