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
# This is the pipeline that runs any scheduled maintainance jobs | |
# we wish to run in addition to the built in Azure DevOps Maintainance jobs | |
# The parameters to target each pool and agent | |
parameters: | |
- name: pool | |
- name: agent | |
- name: nvdapikey | |
# We cannot use to the parameters directly else we get a 'A template expression is not allowed in this context' |
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
[CmdletBinding()] | |
<# | |
.SYNOPSIS | |
Reverts work items to their previous state in Azure DevOps based on the specified criteria. | |
.DESCRIPTION | |
Reverts work items to their previous state in Azure DevOps based on the specified criteria. | |
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
<# | |
.SYNOPSIS | |
Copies GitLab repositories to Azure DevOps. | |
.DESCRIPTION | |
This script retrieves GitLab repositories using the provided GitLab token and copies them to an Azure DevOps project. | |
.PARAMETER gitlabtoken | |
Specifies the GitLab token to authenticate with the GitLab API. | |
Create a personal access token in GitLab by navigating to Profile > Edit Profile > Access Tokens. |
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
param ( | |
[string]$blog = "rfennell", | |
[string]$destination = "C:\projects\bm-source\BMBlogs-Hugo" | |
) | |
write-host "Copying last blog commit" | |
$commandOutput = Invoke-Expression "git diff-tree --no-commit-id --name-only -r HEAD" | |
foreach ($sourceFile in $commandOutput) { |
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
param | |
( | |
$logfile = "TPC\_ApplyPatch.log", | |
$outfile = "out.csv" | |
) | |
# A function to covert the start and end times to a number of minutes | |
# Can't use simple timespan as we only have the time portion not the whole datetime | |
# Hence the hacky added a day-1 second |
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
version: "3" | |
services: | |
snipe-it: | |
image: snipe/snipe-it:latest | |
volumes: | |
- snipeit:/var/lib/snipeit | |
- snipeit-logs:/var/www/html/storage/logs | |
volumes: |
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
#r "Newtonsoft.Json" | |
using System.Text; | |
using System.Net; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.Extensions.Primitives; | |
using Newtonsoft.Json; | |
using OAuth; | |
public static async Task<IActionResult> Run(HttpRequest req, ILogger log) |
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
param( | |
$package, | |
$version, | |
$azdoOrg, | |
$feedname, | |
# provide a, Azure DevOps PAT if it a private feed | |
$pat, | |
$DestinationPath = "$package-$version.zip" | |
) |
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
variables: | |
# the variable used to filter the KeyVault secret list | |
# This can be a simple prefix and wildcard e.g. 'Config-*'' | |
# Or a more complex regex expression e.g. ^(?:Config-*|Settings-*) | |
- name: KV-Filter | |
value: '^(?:Config-*|Settings-*)' | |
# the variable used to KeyVault name | |
- name: KV-Name | |
value: 'bm-kv1' |
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
param | |
( | |
# The OWASP results XML file | |
$input = "dependancy-results.xml", | |
# The SonarCloud generic issue JSON file | |
$output = "dependancy-results.json", | |
# The file to associate issues with | |
$filename = "c:\folder\file.cs" | |
) |
NewerOlder