├── README.md └── policies ├── platformcontext.yml └── cla.yml /README.md: -------------------------------------------------------------------------------- 1 | # .github -------------------------------------------------------------------------------- /policies/platformcontext.yml: -------------------------------------------------------------------------------- 1 | name: platform_context 2 | description: The context for GitOps platform, this will drive GitOps specific policies 3 | owner: 4 | resource: repository 5 | where: 6 | configuration: 7 | platformContext: 8 | active: true 9 | onFailure: 10 | onSuccess: 11 | -------------------------------------------------------------------------------- /policies/cla.yml: -------------------------------------------------------------------------------- 1 | name: Contributor License Agreement Policy 2 | description: CLA policy file 3 | 4 | resource: repository 5 | 6 | configuration: 7 | cla: 8 | content: https://raw.githubusercontent.com/microsoft/.github/main/CLA/microsoft.yml 9 | minimalChangeRequired: 10 | files: 2 11 | codeLines: 16 12 | bypassOrgs: 13 | - bloomberg 14 | bypassUsers: 15 | - dependabot[bot] 16 | - greenkeeper[bot] 17 | - dotnet-maestro[bot] 18 | - dependabot-preview[bot] 19 | - openapi-sdkautomation[bot] 20 | - github-actions[bot] 21 | - content-assistant[bot] 22 | - reunion-maestro[bot] 23 | - renovate[bot] 24 | - microsoft-github-policy-service[bot] 25 | - msftbot[bot] 26 | - azure-pipelines[bot] 27 | - CBL-Mariner-Bot 28 | - pbicvbot 29 | - acomghbot 30 | - azuresdkciprbot 31 | - dotnet-corert-bot 32 | - iotgwbot 33 | - LordBobbot 34 | - qa-bot 35 | - winobjc-bot 36 | - mukaibot 37 | - edtbot 38 | - tecbot 39 | - nzspambot 40 | - SoundBot 41 | - dn-helix-agents-bot 42 | - wslbot 43 | - dotnet-bot 44 | - benrobot 45 | - typescript-bot 46 | - ansibleazurebot 47 | - wdkbot 48 | - deanbot 49 | - OutlookBot 50 | - ALGitHubBot 51 | - blackrobot 52 | - azure-pipelines-bot 53 | - uefibot 54 | - flinchbot 55 | - MicrosoftIssueBot 56 | - agentoffline-bot 57 | - officedocsbot 58 | - vswdbot 59 | - thisisnotarobot 60 | - coreosbot 61 | - McCoyBot 62 | - audevbot 63 | - csd-automationbot 64 | - ascforiotbot 65 | - rnbot 66 | - MixedRealitySpectatorViewBot 67 | - UI-Fabric-RN-Bot 68 | - dotnet-maestro-bot 69 | - anton-bot 70 | - WorkingRobot 71 | - azclibot 72 | - dotnet-docker-bot 73 | - rnsdkbot 74 | - jenfoxbot 75 | - MSLearnBot 76 | - wingetbot 77 | - azure-powershell-bot 78 | - ninjarobot 79 | - leha-bot 80 | - sasabot 81 | - akri-bot 82 | - dokku-bot 83 | - testplatform-bot 84 | - microsoft-golang-bot 85 | - RunTheBot 86 | - julien-lebot 87 | - zangobot 88 | - meo-autobot 89 | - acomghbot 90 | - upgradvisor-bot 91 | - oberonbot 92 | - PylanceBot 93 | - nfbot 94 | - pulumi-bot 95 | - engelbot 96 | - inclusive-coding-bot 97 | - dotnet-winget-bot 98 | - trustedroots-bot 99 | - polymcbot 100 | - LizardByte-bot 101 | - goodboyrobot 102 | - ActivityWatchBot 103 | - OhMyGuus-Bot 104 | - podman-desktop-bot 105 | - liurunliang-bot 106 | - prmerger-test[bot] 107 | - learn-build-service-test[bot] 108 | - learn-build-service-ppe[bot] 109 | - learn-build-service-prod[bot] 110 | prohibitedCompanies: 111 | - msft 112 | - microsoft 113 | autoSignMsftEmployee: true 114 | signRepos: 115 | - repoName: cla-approvers-intel 116 | fileName: approvedUsers.csv 117 | companyName: intel 118 | --------------------------------------------------------------------------------