Unverified Commit c7e02fd8 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

teams/stridtech: handle team with external membership (#478861)

parents 79f5633e dfe9bbe1
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -916,15 +916,6 @@ with lib.maintainers;
    shortName = "Steam";
  };

  stridtech = {
    # Verify additions by approval of an already existing member of the team
    members = [
      ulrikstrid
    ];
    scope = "Group registration for Strid Tech AB team members who collectively maintain packages";
    shortName = "StridTech";
  };

  swift = {
    members = [
      dduan
+0 −1
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ vscode-utils.buildVscodeMarketplaceExtension {
    downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-bicep";
    homepage = "https://github.com/Azure/bicep/tree/main/src/vscode-bicep";
    license = lib.licenses.mit;
    teams = [ lib.teams.stridtech ];
  };
}

+0 −1
Original line number Diff line number Diff line
@@ -480,7 +480,6 @@ py.pkgs.toPythonApplication (
      license = lib.licenses.mit;
      mainProgram = "az";
      maintainers = with lib.maintainers; [ katexochen ];
      teams = [ lib.teams.stridtech ];
      platforms = lib.platforms.all;
    };
  }
+0 −1
Original line number Diff line number Diff line
@@ -50,7 +50,6 @@ buildDotnetModule rec {
    homepage = "https://github.com/Azure/bicep/";
    changelog = "https://github.com/Azure/bicep/releases/tag/v${version}";
    license = lib.licenses.mit;
    teams = [ lib.teams.stridtech ];
    platforms = lib.platforms.all;
    badPlatforms = [ "aarch64-linux" ];
  };
+0 −1
Original line number Diff line number Diff line
@@ -57,7 +57,6 @@ buildDotnetModule rec {
    changelog = "https://github.com/Azure/bicep/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = [ ];
    teams = [ lib.teams.stridtech ];
    mainProgram = "bicep";
  };
}
Loading