Skip to content

Instantly share code, notes, and snippets.

@fbjorn
fbjorn / list-all-repos-in-azure.sh
Created September 8, 2021 09:19
List all repositories for all projects in Azure DevOps
# This will print all repositories found in all projects that your Azure DevOps account has access to
# Example of output:
# project1 / repo1
# project1 / repo2
# another-project / repo
az devops project list | jq '.value[].name' | xargs -I{} az repos list --project {} | jq -r '.[] | .project.name + " / " + .name '
@fbjorn
fbjorn / deploy.yaml
Created March 18, 2021 08:26
GitHub Actions pipeline for deploying static files to GitHub Pages without 3rd party dependencies.
name: Deploy to GitHub pages
on:
push:
branches:
- master
jobs:
Deploy:
runs-on: ubuntu-latest