Skip to content

Shared JS infra for automation across repos owned by the TypeScript team

License

Notifications You must be signed in to change notification settings

microsoft/TypeScript-repos-automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3301fc6 · Jan 30, 2025
Jan 29, 2025
Dec 3, 2019
Nov 20, 2020
Jan 30, 2025
Jan 22, 2020
Jan 30, 2025
Dec 3, 2019
Jan 22, 2020
May 14, 2024
Dec 2, 2019
Dec 2, 2019
May 15, 2024
Dec 2, 2019
May 14, 2024
Dec 3, 2019
Jul 16, 2024
May 15, 2024
May 14, 2024

Repository files navigation

Meta

  • State: In Production
  • Dashboard: Azure

Current Checks

Pull Requests

  • Adds a label for any new PR by a core team member
  • Assigns a core team member to their own PR if no-one is assigned

Issues

  • NOOP for now, but set up

Setup

This repo represents a single Azure "Function App" - which is an app which hosts many functions.

# Clone
git clone https://github.com/microsoft/TypeScript-repos-automation.git repos-automation
cd repos-automation
npm install

# Validate
npm test

You should mostly work according to tests from the src repo, but you can start the server by running:

npm start

To do this you need to have the Azure Functions Core Tools set up. Expect this install to take some time - it's the actual runtime used on the server in Azure.

Windows users:

npm install -g azure-functions-core-tools

Mac users:

brew tap azure/functions
brew install azure-functions-core-tools

Then you can use curl to send GitHub webhook JSON fixtures to the server:

curl -d "@fixtures/issues/created.json" -X POST http://localhost:7071/api/TypeScriptRepoIssueWebhook

While developing, you can use the createFakeGitHubClient to mock out the API with the responses you expect:

- import { createGitHubClient } from "./util/createGitHubClient";
+ import { createFakeGitHubClient } from "./util/tests/createMockGitHubClient";

export const handlePullRequestPayload = async (payload: WebhookPayloadPullRequest, context: Context) => {
-  const api = createGitHubClient();
+  const api = createGitHubClient();

  // Run checks
  await assignSelfToNewPullRequest(api, payload);

  context.res = {
    status: 200,
    body: "Success"
  };
};

Deployment

PR's are automatically deployed when merged via GitHub Actions. If you'd like to manually deploy, you can use npm run deploy. Note: a manual deploy will nuke your node_modules.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

About

Shared JS infra for automation across repos owned by the TypeScript team

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published