diff --git a/README.md b/README.md index 9a132fd8b563..f4e8dae7d00a 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,5 @@ The `doc` directory has additional documentation for developing and understandin This repository contains primarily non-OSS-licensed files. See [LICENSE](LICENSE). Copyright (c) 2018-present Sourcegraph Inc. +Hello Sourcegraph! +Goodbye diff --git a/client/README.md b/client/README.md index 50e8944c050d..33ceeaa9ed87 100644 --- a/client/README.md +++ b/client/README.md @@ -27,3 +27,5 @@ 5. **shared** contains utility functions, types, polyfills, etc which is not a part of the Wildcard component library. These modules should be moved into **utils** package and other new packages: e.g. **api** for GraphQL client and type generators, etc. 6. Packages should use package name (e.g. `@sourcegraph/wildcard`) for imports instead of the relative paths (e.g. `../../../../wildcard/src/components/Markdown`) to avoid long relative-paths and make dependency graph between packages clear. (Typescript will warn if packages have circular dependencies). It's easy to refactor such isolated packages, extract functionality into new ones, or even into new repositories. +Hello Sourcegraph! +Goodbye diff --git a/client/branded/README.md b/client/branded/README.md index be94166a22ed..8df586e616fa 100644 --- a/client/branded/README.md +++ b/client/branded/README.md @@ -4,3 +4,5 @@ This folder contains client code that is **branded**, i.e. it implements the vis Code here can use global classes and must not adapt styles of the code host (for more details, see [Styling UI in the handbook](../../doc/dev/background-information/web/styling.md)). Any code that is code host agnostic should go into [`../shared`](../shared) instead. +Hello Sourcegraph! +Goodbye diff --git a/client/branded/src/search-ui/README.md b/client/branded/src/search-ui/README.md index dad0a3285425..bdd1ad3b06e6 100644 --- a/client/branded/src/search-ui/README.md +++ b/client/branded/src/search-ui/README.md @@ -1,3 +1,5 @@ # Search UI This contains search UI components with branded styling that are shared between clients. For example, the `` component that is used in both the web application and VS Code extension. +Hello Sourcegraph! +Goodbye diff --git a/client/branded/src/search-ui/input/codemirror/README.md b/client/branded/src/search-ui/input/codemirror/README.md index c82da03cd9af..c30ee9d495fc 100644 --- a/client/branded/src/search-ui/input/codemirror/README.md +++ b/client/branded/src/search-ui/input/codemirror/README.md @@ -1,2 +1,4 @@ This folder contains various extensions used for the CodeMirror based search query input. +Hello Sourcegraph! +Goodbye diff --git a/client/branded/src/search-ui/input/experimental/README.md b/client/branded/src/search-ui/input/experimental/README.md index 27abfad14f82..53ac3e678290 100644 --- a/client/branded/src/search-ui/input/experimental/README.md +++ b/client/branded/src/search-ui/input/experimental/README.md @@ -4,3 +4,5 @@ input. IT SHOULD NOT BE USED! If you have questions about it reach out the search product team. +Hello Sourcegraph! +Goodbye diff --git a/client/browser/README.md b/client/browser/README.md index faba0a968b76..1e35cbaca8a8 100644 --- a/client/browser/README.md +++ b/client/browser/README.md @@ -260,3 +260,5 @@ This is an adjusted version of @lguychard's [comment here](https://github.com/so 9. Navigated to `http://127.0.0.1/source/jrpc/browse/master/async.go` Whenever you make changes to the native extension code, you need to run `pnpm build` inside the `client/browser` directory before seeing the changes in effect on the Phabricator instance. +Hello Sourcegraph! +Goodbye diff --git a/client/browser/src/browser-extension/web-extension-api/README.md b/client/browser/src/browser-extension/web-extension-api/README.md index 6a4ae050e41e..a922310a22b7 100644 --- a/client/browser/src/browser-extension/web-extension-api/README.md +++ b/client/browser/src/browser-extension/web-extension-api/README.md @@ -1,3 +1,5 @@ # Browser APIs This directory contains a set of helper functions that wrap the [APIs](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API) exposed by the browser to browser extensions. This originally came about while implementing support for Safari. Rather than write an entirely new extension, we wrapped the APIs and implemented pseudo support for these APIs in Safari. At this time, we no longer support Safari, however we have kept these because there are still differences in the APIs between Chrome and Firefox. This abstraction also allowed us to have a more type safe interaction with the APIs in actual application code. +Hello Sourcegraph! +Goodbye diff --git a/client/build-config/README.md b/client/build-config/README.md index 0d5f6795ff5a..3fcc258905bd 100644 --- a/client/build-config/README.md +++ b/client/build-config/README.md @@ -1,3 +1,5 @@ # Build config Shared build configuration. +Hello Sourcegraph! +Goodbye diff --git a/client/client-api/README.md b/client/client-api/README.md index 7462bfb2bf4e..335a80585159 100644 --- a/client/client-api/README.md +++ b/client/client-api/README.md @@ -1,3 +1,5 @@ # Client API Sourcegraph Client API +Hello Sourcegraph! +Goodbye diff --git a/client/codeintellify/src/README.md b/client/codeintellify/src/README.md index 7a6bfffae4c7..2c6415217a16 100644 --- a/client/codeintellify/src/README.md +++ b/client/codeintellify/src/README.md @@ -30,3 +30,5 @@ You need to provide your own UI component (referred to as the HoverOverlay) that | Hover overlay | Also called tooltip | | hoverify | To attach all the listeners needed to a code view so that it will display overlay on hovers and clicks. | | unhoverify | To unsubscribe from the Subscription returned by `hoverifier.hoverify()`. Removes all event listeners from the code view again and hides the hover overlay if it was triggered by the unhoverified code view. | +Hello Sourcegraph! +Goodbye diff --git a/client/cody-context-filters-test-dataset/README.md b/client/cody-context-filters-test-dataset/README.md index 9a16e221b7f3..234f62d39129 100644 --- a/client/cody-context-filters-test-dataset/README.md +++ b/client/cody-context-filters-test-dataset/README.md @@ -3,3 +3,5 @@ This package includes a copy of the dataset used for testing the Cody context filtering logic on the backend. The dataset is exported so that Cody clients can ensure consistency in how Cody context filters are handled across both the server and clients. +Hello Sourcegraph! +Goodbye diff --git a/client/common/README.md b/client/common/README.md index b082196f040a..b2bec21ff81d 100644 --- a/client/common/README.md +++ b/client/common/README.md @@ -2,3 +2,5 @@ Generic utilities without any specific domain. This package should not depend on any other Sourcegraph monorepo package. +Hello Sourcegraph! +Goodbye diff --git a/client/eslint-plugin-wildcard/README.md b/client/eslint-plugin-wildcard/README.md index 1147e60b8527..7c542141febc 100644 --- a/client/eslint-plugin-wildcard/README.md +++ b/client/eslint-plugin-wildcard/README.md @@ -12,3 +12,5 @@ Update your `.eslintrc` file to add the following configuration: ``` This will enable the plugin in your project and enforce our recommended rules. +Hello Sourcegraph! +Goodbye diff --git a/client/extension-api-types/README.md b/client/extension-api-types/README.md index 60f5f7f9ef34..a589fbeb4923 100644 --- a/client/extension-api-types/README.md +++ b/client/extension-api-types/README.md @@ -2,3 +2,5 @@ Extensions should use the `sourcegraph` package, not this package. This package is only for client applications that embed Sourcegraph extensions and need to communicate with them. +Hello Sourcegraph! +Goodbye diff --git a/client/extension-api/README.md b/client/extension-api/README.md index c2b0d3f5aac0..1fc06739f7c4 100644 --- a/client/extension-api/README.md +++ b/client/extension-api/README.md @@ -1,3 +1,5 @@ # Sourcegraph extension API This package contains only the types for the DEPRECATED [Sourcegraph extension API](https://unpkg.com/sourcegraph/dist/docs/index.html) ([`sourcegraph.d.ts`](https://github.com/sourcegraph/sourcegraph/blob/main/packages/extension-api/src/sourcegraph.d.ts)). +Hello Sourcegraph! +Goodbye diff --git a/client/http-client/README.md b/client/http-client/README.md index 27b74b396211..1706a9d233e3 100644 --- a/client/http-client/README.md +++ b/client/http-client/README.md @@ -3,3 +3,5 @@ Generic logic for sending and handling HTTP requests from our client applications. Use the `getGraphQLClient` client utility to create an app-specific instance of the Apollo Client, which is the recommended way to interact with Sourcegraph API from web applications. +Hello Sourcegraph! +Goodbye diff --git a/client/jetbrains/README.md b/client/jetbrains/README.md index e6da4440239c..25b09260ff11 100644 --- a/client/jetbrains/README.md +++ b/client/jetbrains/README.md @@ -26,3 +26,5 @@ Run the following commands to preview the components in a standalone HTML file. ```sh pnpm standalone && open http://localhost:3000/ ``` +Hello Sourcegraph! +Goodbye diff --git a/client/observability-client/README.md b/client/observability-client/README.md index cd920be032cd..7a0ff4a78cfd 100644 --- a/client/observability-client/README.md +++ b/client/observability-client/README.md @@ -1,3 +1,5 @@ # Observability client Shared browser observability tools based on `@opentelemetry` packages. +Hello Sourcegraph! +Goodbye diff --git a/client/observability-server/README.md b/client/observability-server/README.md index 4fd31a2cffb1..8b91d231fd6b 100644 --- a/client/observability-server/README.md +++ b/client/observability-server/README.md @@ -10,3 +10,5 @@ Shared client infrastructure observability tools. - observability event schemas, - environment variable validators, - unit tests. +Hello Sourcegraph! +Goodbye diff --git a/client/shared/README.md b/client/shared/README.md index bdee9c6e1f3d..9c3c2debb80b 100644 --- a/client/shared/README.md +++ b/client/shared/README.md @@ -7,3 +7,5 @@ In particular, components cannot make use of global CSS classes but must accept For more details, see [Styling UI in the handbook](../../doc/dev/background-information/web/styling.md). Code that is only used in branded contexts (web app, options menu of the browser extension, ...) should go into [`../branded`](../branded) instead. +Hello Sourcegraph! +Goodbye diff --git a/client/shared/src/react-shortcuts/README.md b/client/shared/src/react-shortcuts/README.md index 8c6f91a2c0df..4cae13650089 100644 --- a/client/shared/src/react-shortcuts/README.md +++ b/client/shared/src/react-shortcuts/README.md @@ -3,3 +3,5 @@ was a fork of @shopify/quilt at commit 51d2e87343f4f6dfac2a5f63b536a04399ba47c9 plus some additional changes. We moved this code in-house to make it easier to to make adjustments. +Hello Sourcegraph! +Goodbye diff --git a/client/shared/src/testing/integration/README.md b/client/shared/src/testing/integration/README.md index 8061134f0c97..ad1390976c42 100644 --- a/client/shared/src/testing/integration/README.md +++ b/client/shared/src/testing/integration/README.md @@ -3,3 +3,5 @@ This folder contains shared testing helpers for the Sourcegraph webapp and browser extensions. For more information about integration tests and how to run them, read the [Client integration tests documentation](https://docs-legacy.sourcegraph.com/dev/how-to/testing#client-integration-tests). +Hello Sourcegraph! +Goodbye diff --git a/client/storybook/README.md b/client/storybook/README.md index 4e14a295656f..c11686380a7c 100644 --- a/client/storybook/README.md +++ b/client/storybook/README.md @@ -19,3 +19,5 @@ pnpm storybook:build # Load only a subset of stories to boost build performance. STORIES_GLOB='client/web/src/**/*.story.tsx' pnpm start ``` +Hello Sourcegraph! +Goodbye diff --git a/client/template-parser/README.md b/client/template-parser/README.md index 77837cb13bfe..577601022733 100644 --- a/client/template-parser/README.md +++ b/client/template-parser/README.md @@ -1 +1,3 @@ # Template Parser +Hello Sourcegraph! +Goodbye diff --git a/client/testing/README.md b/client/testing/README.md index 45b58d5833df..fc51fa4095a2 100644 --- a/client/testing/README.md +++ b/client/testing/README.md @@ -2,3 +2,5 @@ Package-agnostic utilities for unit and integration tests. App or package-specific utilities should live in `client/{packageName}/src/testing`. +Hello Sourcegraph! +Goodbye diff --git a/client/vscode/README.md b/client/vscode/README.md index 27fd25ea32dc..2a7a38029848 100644 --- a/client/vscode/README.md +++ b/client/vscode/README.md @@ -149,3 +149,5 @@ The Sourcegraph extension uses major.EVEN_NUMBER.patch (eg. 2.0.1) for release v Please see the [CONTRIBUTING](./CONTRIBUTING.md) document if you are interested in contributing directly to our code base. +Hello Sourcegraph! +Goodbye diff --git a/client/vscode/src/README.md b/client/vscode/src/README.md index 624451ba8e91..9b2bffb4a82c 100644 --- a/client/vscode/src/README.md +++ b/client/vscode/src/README.md @@ -51,3 +51,5 @@ As detailed in our CONTRIBUTING.md file, this extension runs code in the followi ## List of Files and Folders See the File Structure section in our CONTRIBUTING.md file to learn more about the folders and files in this directory. +Hello Sourcegraph! +Goodbye diff --git a/client/vscode/src/webview/search-panel/alias/README.md b/client/vscode/src/webview/search-panel/alias/README.md index 1c30b92b2564..3f7b3dff4542 100644 --- a/client/vscode/src/webview/search-panel/alias/README.md +++ b/client/vscode/src/webview/search-panel/alias/README.md @@ -17,3 +17,5 @@ by changes in the way that base code interacts with forked code. - Create a React context to wrap around `StreamingSearchResultsList` (shared) to pass VS Code extension APIs to forked search result components. - Change links to buttons, call VS Code file handlers from context on click. +Hello Sourcegraph! +Goodbye diff --git a/client/web-sveltekit/README.md b/client/web-sveltekit/README.md index 8f26f4430b23..281b6eb83ad5 100644 --- a/client/web-sveltekit/README.md +++ b/client/web-sveltekit/README.md @@ -150,3 +150,5 @@ pnpm run build Currently SvelteKit is configured to create a client-side single page application. +Hello Sourcegraph! +Goodbye diff --git a/client/web-sveltekit/assets/icons/README.md b/client/web-sveltekit/assets/icons/README.md index a33d13489022..2a71002cfbae 100644 --- a/client/web-sveltekit/assets/icons/README.md +++ b/client/web-sveltekit/assets/icons/README.md @@ -3,3 +3,5 @@ The icons in this folder can be accessed via `ISg` in code. For examp ```js ISgCody ``` +Hello Sourcegraph! +Goodbye diff --git a/client/web/README.md b/client/web/README.md index 660219250462..eff7c0ee1594 100644 --- a/client/web/README.md +++ b/client/web/README.md @@ -42,3 +42,5 @@ Note: If you are unable to use the above commands (e.g. you can't install Caddy) ### API proxy In both environments, server proxies API requests to `SOURCEGRAPH_API_URL` provided as the `.env` variable. +Hello Sourcegraph! +Goodbye diff --git a/client/web/src/cody/management/api/README.md b/client/web/src/cody/management/api/README.md index f1c773aeab65..962034c645ae 100644 --- a/client/web/src/cody/management/api/README.md +++ b/client/web/src/cody/management/api/README.md @@ -31,3 +31,5 @@ leading to additional HTTP requests being made unintentionally! const call = useMemo(() => Client.createStripeCheckoutSession(req), [req.customerEmail, req.showPromoCodeField]) const { loading, error, data } = useApiCaller(call) ``` +Hello Sourcegraph! +Goodbye diff --git a/client/web/src/components/README.md b/client/web/src/components/README.md index 8a178569b437..29f4d5ee7d88 100644 --- a/client/web/src/components/README.md +++ b/client/web/src/components/README.md @@ -1 +1,3 @@ Components that are shared through the app +Hello Sourcegraph! +Goodbye diff --git a/client/web/src/enterprise/embed/README.md b/client/web/src/enterprise/embed/README.md index ab64882fa54e..76164de5bcae 100644 --- a/client/web/src/enterprise/embed/README.md +++ b/client/web/src/enterprise/embed/README.md @@ -7,3 +7,5 @@ - Start (or restart) your local dev environment - Navigate to a 3rd party site (e.g., codepen.io), create a new page, and embed an iframe using the ngrok URL - Example iframe tag: `` +Hello Sourcegraph! +Goodbye diff --git a/client/web/src/repo/blob/codemirror/codeintel/README.md b/client/web/src/repo/blob/codemirror/codeintel/README.md index a197d8471d12..4e5642fb9c60 100644 --- a/client/web/src/repo/blob/codemirror/codeintel/README.md +++ b/client/web/src/repo/blob/codemirror/codeintel/README.md @@ -92,3 +92,5 @@ loosing focus and interrupting token navigation. Additional measures are taken to ensure that the focus stays within the editor. [1]: https://codemirror.net/docs/guide/#facets +Hello Sourcegraph! +Goodbye diff --git a/client/web/src/search/README.md b/client/web/src/search/README.md index b9c63c97e402..ad1621ecbc31 100644 --- a/client/web/src/search/README.md +++ b/client/web/src/search/README.md @@ -1 +1,3 @@ Components for search UI in the app. +Hello Sourcegraph! +Goodbye diff --git a/client/web/src/search/results/README.md b/client/web/src/search/results/README.md index 6885a6baa915..34567f2c74a2 100644 --- a/client/web/src/search/results/README.md +++ b/client/web/src/search/results/README.md @@ -1 +1,3 @@ Components for the search results page +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/README.md b/client/wildcard/README.md index a09d90c4bfdd..04e4f8420c45 100644 --- a/client/wildcard/README.md +++ b/client/wildcard/README.md @@ -13,3 +13,5 @@ The Wildcard component library is a collection of design-approved reusable compo Reusable React hooks. Typically utilities or headless components See [Wildcard documentation](https://docs-legacy.sourcegraph.com/dev/background-information/web/wildcard) for more information. +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/src/components/Charts/README.md b/client/wildcard/src/components/Charts/README.md index fb1e9ab2139b..39ece448f318 100644 --- a/client/wildcard/src/components/Charts/README.md +++ b/client/wildcard/src/components/Charts/README.md @@ -134,3 +134,5 @@ related issues. If you see something missing, feel free to file an issue with th If you need any help around this package chart or data-visualization in general, feel free to reach out to [code-insights FE team](https://github.com/orgs/sourcegraph/teams/code-insights-frontend) (@code-insights-fe mention in slack). +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/src/components/Charts/components/bar-chart/README.md b/client/wildcard/src/components/Charts/components/bar-chart/README.md index ded014056af7..8cd9af97ac69 100644 --- a/client/wildcard/src/components/Charts/components/bar-chart/README.md +++ b/client/wildcard/src/components/Charts/components/bar-chart/README.md @@ -27,3 +27,5 @@ algorithm doesn't work well in all cases. Sometimes when you're using bright col To solve this problem, if you need to use bright colors on the chart, and you want to get control over active/non-active colors, you can specify colors for the bar non-active state manually with `getDatumFadeColor` prop. If you set this prop, this turns off the generic color algorithm for non-active bars and takes the color provided by you. +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/src/components/Combobox/README.md b/client/wildcard/src/components/Combobox/README.md index 9404f4e12abb..9aa35844bd82 100644 --- a/client/wildcard/src/components/Combobox/README.md +++ b/client/wildcard/src/components/Combobox/README.md @@ -46,3 +46,5 @@ Where - `` is a suggestions text component (it implements text highlighting logic by default) [See Combobox storybook stories for more examples](https://storybook.sgdev.org/?path=/story/wildcard-combobox--combobox-demo). +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/src/components/Popover/README.md b/client/wildcard/src/components/Popover/README.md index edf32af4a107..846e0a6656b8 100644 --- a/client/wildcard/src/components/Popover/README.md +++ b/client/wildcard/src/components/Popover/README.md @@ -226,3 +226,5 @@ enum Strategy { ``` - **_targetPadding_** (optional) - Adds space/padding between target and popover elements +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/src/components/Tree/react-accessible-treeview/README.md b/client/wildcard/src/components/Tree/react-accessible-treeview/README.md index 4a950c71e633..2df57acdb035 100644 --- a/client/wildcard/src/components/Tree/react-accessible-treeview/README.md +++ b/client/wildcard/src/components/Tree/react-accessible-treeview/README.md @@ -6,3 +6,5 @@ The modifications are: - Apply fix from https://github.com/dgreene1/react-accessible-treeview/pull/81 - Remove PropTypes API +Hello Sourcegraph! +Goodbye diff --git a/client/wildcard/src/testing/README.md b/client/wildcard/src/testing/README.md index 3611035c7f4a..f3fefeb06cd9 100644 --- a/client/wildcard/src/testing/README.md +++ b/client/wildcard/src/testing/README.md @@ -8,3 +8,5 @@ cannot import ES modules using ES6 import statements. For example, there's no wa `@apollo/client` as we do today because Typescript will complain: > "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"{0}\")' call instead. To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `"type": "module"` to '/package.json'" +Hello Sourcegraph! +Goodbye diff --git a/cmd/README.md b/cmd/README.md index 46d86b4b0181..4736fd063b71 100644 --- a/cmd/README.md +++ b/cmd/README.md @@ -1,3 +1,5 @@ This directory contains Sourcegraph services and binaries. When a services is added, removed, or when a service's dependencies change, update [our architecture diagram](../doc/dev/background-information/architecture/index.md). +Hello Sourcegraph! +Goodbye diff --git a/cmd/appliance/README.md b/cmd/appliance/README.md index 2de19dff3384..efc2c95f6bcf 100644 --- a/cmd/appliance/README.md +++ b/cmd/appliance/README.md @@ -11,3 +11,5 @@ Appliance runs as a standard Kubernetes Deployment and utilizes Kubernetes [cont ## Own For more information or for help, see the [Release Team](https://handbook.sourcegraph.com/departments/engineering/teams/release/). +Hello Sourcegraph! +Goodbye diff --git a/cmd/batcheshelper/README.md b/cmd/batcheshelper/README.md index a30a1e95e28d..5336236fa70b 100644 --- a/cmd/batcheshelper/README.md +++ b/cmd/batcheshelper/README.md @@ -78,3 +78,5 @@ When running the following `sg` commands, `batcheshelper` will automatically be - `batcheshelper-builder` - `batches` +Hello Sourcegraph! +Goodbye diff --git a/cmd/blobstore/README.md b/cmd/blobstore/README.md index cd353df6f47e..ebae6cfa7414 100644 --- a/cmd/blobstore/README.md +++ b/cmd/blobstore/README.md @@ -9,3 +9,5 @@ Implements a very simple S3-compatible API subset which can: - List a bucket's objects It provides the blob storage that Sourcegraph uses by default out-of-the-box (i.e. if not configured to use an external S3 or GCS bucket.) +Hello Sourcegraph! +Goodbye diff --git a/cmd/bundled-executor/README.md b/cmd/bundled-executor/README.md index 99e994600cd0..7acd29c8d828 100644 --- a/cmd/bundled-executor/README.md +++ b/cmd/bundled-executor/README.md @@ -28,3 +28,5 @@ create a new instance when it exits. - Java 11 (OpenJDK) - Maven 3.6.3 - `yq` +Hello Sourcegraph! +Goodbye diff --git a/cmd/cody-gateway-config/README.md b/cmd/cody-gateway-config/README.md index bff3c5763c1b..f4c6d98c6643 100644 --- a/cmd/cody-gateway-config/README.md +++ b/cmd/cody-gateway-config/README.md @@ -28,3 +28,5 @@ go test ./internal/modelconfig # as expected. sg lint --fix format ``` +Hello Sourcegraph! +Goodbye diff --git a/cmd/cody-gateway/qa/README.md b/cmd/cody-gateway/qa/README.md index 2cb9e25758a9..37762c2f0ba1 100644 --- a/cmd/cody-gateway/qa/README.md +++ b/cmd/cody-gateway/qa/README.md @@ -19,3 +19,5 @@ bazel test --runs_per_test=2 --test_output=all //cmd/cody-gateway/qa:qa_test --t ``` The `--runs_per_test=2` flag in snippet above ensures we don't hit a Bazel cache, and runs the test twice for good meausre. +Hello Sourcegraph! +Goodbye diff --git a/cmd/enterprise-portal/README.md b/cmd/enterprise-portal/README.md index 1de36bfc901f..8f4154ee27ce 100644 --- a/cmd/enterprise-portal/README.md +++ b/cmd/enterprise-portal/README.md @@ -18,3 +18,5 @@ To customize the PostgreSQL and Redis connection strings, customize the followin - `PGDSN`: PostgreSQL connection string - `REDIS_HOST`: Redis host - `REDIS_PORT`: Redis port +Hello Sourcegraph! +Goodbye diff --git a/cmd/executor/README.md b/cmd/executor/README.md index 17a624310eb0..fe2afea3bcaf 100644 --- a/cmd/executor/README.md +++ b/cmd/executor/README.md @@ -50,3 +50,5 @@ As with the VM image, we're producing an AMI for both AWS and GCP, there are two - `bazel run //cmd/executor/docker-mirror:ami.push` takes the AMIs from above and publish them (adjust perms, naming). While `gcloud` is provided by Bazel, AWS cli is expected to be available on the host running Bazel. +Hello Sourcegraph! +Goodbye diff --git a/cmd/executor/kubernetes/README.md b/cmd/executor/kubernetes/README.md index 147ea8e09a08..37ece3764427 100644 --- a/cmd/executor/kubernetes/README.md +++ b/cmd/executor/kubernetes/README.md @@ -98,3 +98,5 @@ Run the following command to delete the executor. ```bash kubectl delete -f . ``` +Hello Sourcegraph! +Goodbye diff --git a/cmd/frontend/README.md b/cmd/frontend/README.md index 1593ac188b00..d53920915402 100644 --- a/cmd/frontend/README.md +++ b/cmd/frontend/README.md @@ -7,3 +7,5 @@ Typically there are multiple replicas running in production to scale with load. Application data is stored in our PostgreSQL database. Session data is stored in the Redis store, and non-persistent data is stored in the Redis cache. +Hello Sourcegraph! +Goodbye diff --git a/cmd/frontend/graphqlbackend/README.md b/cmd/frontend/graphqlbackend/README.md index dca62f568d24..4b7275cdc11f 100644 --- a/cmd/frontend/graphqlbackend/README.md +++ b/cmd/frontend/graphqlbackend/README.md @@ -1,3 +1,5 @@ # README See [Developing the Sourcegraph GraphQL API](../../../doc/dev/background-information/graphql_api.md) and [How to add a GraphQL query](../../../doc/dev/how-to/add_graphql_query.md). +Hello Sourcegraph! +Goodbye diff --git a/cmd/frontend/internal/executorqueue/README.md b/cmd/frontend/internal/executorqueue/README.md index abb399476ebb..3c33136e675f 100644 --- a/cmd/frontend/internal/executorqueue/README.md +++ b/cmd/frontend/internal/executorqueue/README.md @@ -6,3 +6,5 @@ The executor-queue maintains the executor work queues. Executor instances poll f - The `codeintel` queue contains unprocessed lsif_index records - The `batches` queue contains unprocessed batch_spec_execution records +Hello Sourcegraph! +Goodbye diff --git a/cmd/gitserver/README.md b/cmd/gitserver/README.md index fda26bc84d93..7cc8a53abde6 100644 --- a/cmd/gitserver/README.md +++ b/cmd/gitserver/README.md @@ -52,3 +52,5 @@ To use `p4-fusion` while developing Sourcegraph, there are a couple of options. #### Bazel Native binaries are provided through Bazel, built via Nix in [our fork of p4-fusion](https://github.com/sourcegraph/p4-fusion/actions/workflows/nix-build-and-upload.yaml). It can be invoked either through `./dev/p4-fusion-dev` or directly with `bazel run //dev/tools:p4-fusion`. +Hello Sourcegraph! +Goodbye diff --git a/cmd/gitserver/internal/cacert/README.md b/cmd/gitserver/internal/cacert/README.md index ccc3da47b6c7..86cb4dc8d5e7 100644 --- a/cmd/gitserver/internal/cacert/README.md +++ b/cmd/gitserver/internal/cacert/README.md @@ -5,3 +5,5 @@ This package exists to expose the internal code in the stdlib x509 package relat To update run `update.bash`. It will copy the relevant code from your go installation and then patch it. Note: This does mean this won't work on darwin. So for example our code which depends on this package will not have system certificates to use in our development environments. +Hello Sourcegraph! +Goodbye diff --git a/cmd/gitserver/internal/git/gitcli/fixtures/git-diff-java-langserver/README.md b/cmd/gitserver/internal/git/gitcli/fixtures/git-diff-java-langserver/README.md index 7398bdbd3ff0..36e8819788e2 100644 --- a/cmd/gitserver/internal/git/gitcli/fixtures/git-diff-java-langserver/README.md +++ b/cmd/gitserver/internal/git/gitcli/fixtures/git-diff-java-langserver/README.md @@ -5,3 +5,5 @@ This file was generated by running the following git command against [sgtest/jav ```bash git diff-tree -r --root --format=format: --no-prefix --name-status --no-renames -z 03efbe9558acc532e88f5288b4e6cfa155c6f2dc ec74ce53c5b8cf6e46e1658c2e816ad567a7acd9 > output.hex ``` +Hello Sourcegraph! +Goodbye diff --git a/cmd/migrator/README.md b/cmd/migrator/README.md index 0a22d5d36aed..a19662b4dbc8 100644 --- a/cmd/migrator/README.md +++ b/cmd/migrator/README.md @@ -1,3 +1,5 @@ # Migrator The migrator service is deployed ahead of a Sourcegraph version upgrade to synchronously run database migrations required by the next version. Successful exit of the migrator denotes that the new version can be deployed. Database migrations are written to be backwards-compatible so that running the migrator for the next upgrade does not cause issues with a working instance. +Hello Sourcegraph! +Goodbye diff --git a/cmd/migrator/airgappedgen/README.md b/cmd/migrator/airgappedgen/README.md index 2dec38516e1f..eebfd0480e07 100644 --- a/cmd/migrator/airgappedgen/README.md +++ b/cmd/migrator/airgappedgen/README.md @@ -130,3 +130,5 @@ Yes, as long as the content didn't change in the GCS bucket and nobody re-tagged The `genrule` that creates the tarball has the `stamp = 1` attribute, so Bazel will inspect the stable status variables and will rebuild this if it changes. And the `VERSION` is a stable attribute, so it will get rebuilt every time it changes, .i.e. on each release. +Hello Sourcegraph! +Goodbye diff --git a/cmd/msp-example/README.md b/cmd/msp-example/README.md index d8a9e15d0eff..e45024581c1f 100644 --- a/cmd/msp-example/README.md +++ b/cmd/msp-example/README.md @@ -7,3 +7,5 @@ This service is an example service testing and demonstrating how to build Manage ```sh bazel run //cmd/msp-example:candidate_push --stamp -- --tag insiders --repository us.gcr.io/sourcegraph-dev/msp-example ``` +Hello Sourcegraph! +Goodbye diff --git a/cmd/pings/README.md b/cmd/pings/README.md index 5c39d5001395..532bdefa7401 100644 --- a/cmd/pings/README.md +++ b/cmd/pings/README.md @@ -29,3 +29,5 @@ A "200 OK" status code is expected. This would send an entry to the GCP Pub/Sub topic `server-update-checks-test`, and once processed, should be available in the BigQuery table [`sourcegraph_analytics.update_checks_test`](https://console.cloud.google.com/bigquery?project=telligentsourcegraph&ws=!1m5!1m4!4m3!1stelligentsourcegraph!2ssourcegraph_analytics!3supdate_checks_test). You need to make the [Entitle request](https://app.entitle.io/request?targetType=resource&duration=10800&justification=Test%20pings%20service&integrationId=52e29e01-d551-4186-88a3-65ff4f28b8c3&resourceId=53946931-0002-469c-9b5f-c5af70bd1ffe&roleId=ea1606fd-2302-487d-83eb-d1f140478416&grantMethodId=ea1606fd-2302-487d-83eb-d1f140478416) to access this page. When there is an error processing the Pub/Sub message, the entry would be instead sent to another BigQuery table [`sourcegraph_analytics.update_checks_test_error_records`](https://console.cloud.google.com/bigquery?project=telligentsourcegraph&ws=!1m5!1m4!4m3!1stelligentsourcegraph!2ssourcegraph_analytics!3supdate_checks_test_error_records). +Hello Sourcegraph! +Goodbye diff --git a/cmd/precise-code-intel-worker/README.md b/cmd/precise-code-intel-worker/README.md index 482d9e5ae59e..150496325b21 100644 --- a/cmd/precise-code-intel-worker/README.md +++ b/cmd/precise-code-intel-worker/README.md @@ -1,3 +1,5 @@ # Precise code intel worker The precise-code-intel-worker service converts LSIF upload file into Postgres data. This service is horizontally scalable. +Hello Sourcegraph! +Goodbye diff --git a/cmd/repo-updater/README.md b/cmd/repo-updater/README.md index d10ccfe152ac..6c378f9662f2 100644 --- a/cmd/repo-updater/README.md +++ b/cmd/repo-updater/README.md @@ -1,3 +1,5 @@ # repo-updater Repo-updater tracks the state of repos, and is responsible for automatically scheduling updates ("git fetch" runs) using gitserver. Other apps which desire updates or fetches should be telling repo-updater, rather than using gitserver directly, so repo-updater can take their changes into account. It is a singleton service by design, so there must only be one replica. +Hello Sourcegraph! +Goodbye diff --git a/cmd/searcher/README.md b/cmd/searcher/README.md index 4b711a58ef44..48a18c50673f 100644 --- a/cmd/searcher/README.md +++ b/cmd/searcher/README.md @@ -5,3 +5,5 @@ Provides on-demand unindexed search for repositories. It scans through a git arc This service should be scaled up the more on-demand searches that need to be done at once. For a search the frontend will scatter the search for each repo@commit across the replicas. The frontend will then gather the results. Like gitserver this is an IO and compute bound service. However, its state is just a disk cache which can be lost at anytime without being detrimental. [Life of a search query](../../doc/dev/background-information/architecture/life-of-a-search-query.md) +Hello Sourcegraph! +Goodbye diff --git a/cmd/server/internal/goreman/README.md b/cmd/server/internal/goreman/README.md index a9735f2f3741..9788b4bad070 100644 --- a/cmd/server/internal/goreman/README.md +++ b/cmd/server/internal/goreman/README.md @@ -3,3 +3,5 @@ This is a fork of github.com/mattn/goreman at commit d0ee41b21be92ce6fd3e55ad11c This fork turns the command into a library. github.com/mattn/goreman is licensed as MIT. +Hello Sourcegraph! +Goodbye diff --git a/cmd/symbols/README.md b/cmd/symbols/README.md index 5b917df3e2fa..3bfe44ed7aa0 100644 --- a/cmd/symbols/README.md +++ b/cmd/symbols/README.md @@ -7,3 +7,5 @@ The ctags output is stored in SQLite files on disk (one per repository@commit). It is used by [basic-code-intel](https://github.com/sourcegraph/sourcegraph-basic-code-intel) to provide the jump-to-definition feature. It supports regex queries, with prefix queries (`^foo`) and exact match queries (`^foo$`) optimized to perform index lookups. The symbols sidebar and search-based code intel benefit from these optimizations. +Hello Sourcegraph! +Goodbye diff --git a/cmd/symbols/squirrel/README.md b/cmd/symbols/squirrel/README.md index 676ca44041e0..c86a25a7fae8 100644 --- a/cmd/symbols/squirrel/README.md +++ b/cmd/symbols/squirrel/README.md @@ -1,3 +1,5 @@ # Squirrel Squirrel is an HTTP server for fast and precise local code intelligence using tree-sitter. +Hello Sourcegraph! +Goodbye diff --git a/cmd/syntactic-code-intel-worker/README.md b/cmd/syntactic-code-intel-worker/README.md index 6502b93e12ef..baddc7237f2b 100644 --- a/cmd/syntactic-code-intel-worker/README.md +++ b/cmd/syntactic-code-intel-worker/README.md @@ -6,3 +6,5 @@ Stateless service that handles generating SCIP data for codebases using Tree-sitter for powering syntax-based code navigation. [Design docs](https://docs.google.com/document/d/14MHauv52o4zTFiV6gC6NOJZxcJpglK-ElWa64gqeKDo/edit) (Sourcegraph internal) +Hello Sourcegraph! +Goodbye diff --git a/cmd/telemetry-gateway/README.md b/cmd/telemetry-gateway/README.md index fff280e90593..0aabdf025168 100644 --- a/cmd/telemetry-gateway/README.md +++ b/cmd/telemetry-gateway/README.md @@ -3,3 +3,5 @@ Telemetry Gateway is a managed service that ingests events exported from Sourcegraph instances, manipulates them as needed, and exports them to designated Pub/Sub topics or other destinations for processing. Refer to [the Telemetry Gateway development documentation](https://docs-legacy.sourcegraph.com/dev/how-to/telemetry_gateway) for more development guidance. +Hello Sourcegraph! +Goodbye diff --git a/cmd/worker/README.md b/cmd/worker/README.md index d28554f3ab52..8e5e16bdd1d6 100644 --- a/cmd/worker/README.md +++ b/cmd/worker/README.md @@ -1,3 +1,5 @@ # Worker The worker service is a collection of the background jobs performed by a Sourcegraph instance. Jobs registered to the worker will run periodically or in response to some event read from the database. +Hello Sourcegraph! +Goodbye diff --git a/dev/auth-provider/README.md b/dev/auth-provider/README.md index d6fd5859b67e..8088ad9ae1dd 100644 --- a/dev/auth-provider/README.md +++ b/dev/auth-provider/README.md @@ -23,3 +23,5 @@ If you need to edit client or user information and want to persist your changes: 1. Run `RESET=1 scripts/configure-keycloak.sh` to clobber the existing configuration with the `config/*.json` files' configuration. Not sure how to edit the JSON to achieve your desired outcome? Use the Keycloak admin interface at http://localhost:3220/auth (login as `root`/`q`) to change configuration, and then export to JSON. +Hello Sourcegraph! +Goodbye diff --git a/dev/authtest/README.md b/dev/authtest/README.md index 99dcba3c3316..e0e290ae2545 100644 --- a/dev/authtest/README.md +++ b/dev/authtest/README.md @@ -1 +1,3 @@ While this test suite focuses on authentication and authorization related tests, you may still refer to [`dev/gqltest`'s README](../gqltest/README.md) for background and how to run it both locally and in CI. +Hello Sourcegraph! +Goodbye diff --git a/dev/bkstats/README.md b/dev/bkstats/README.md index 1eb74589ac50..2e3c78ab8078 100644 --- a/dev/bkstats/README.md +++ b/dev/bkstats/README.md @@ -23,3 +23,5 @@ On 2021-10-22, the pipeline was red for 1h8m32.856s - Check `sourcegraph` organization - `read_builds` - `read_pipelines` +Hello Sourcegraph! +Goodbye diff --git a/dev/build-tracker/README.md b/dev/build-tracker/README.md index 0689a27590a9..336974cccaaa 100644 --- a/dev/build-tracker/README.md +++ b/dev/build-tracker/README.md @@ -33,3 +33,5 @@ go test . -RunSlackIntegrationTest ``` You can enable Slack client debugging by exporting the following environment variable `BUILD_TRACKER_SLACK_DEBUG=1` +Hello Sourcegraph! +Goodbye diff --git a/dev/buildchecker/README.md b/dev/buildchecker/README.md index 04c1b872819a..9b5a2cc3e2a4 100644 --- a/dev/buildchecker/README.md +++ b/dev/buildchecker/README.md @@ -70,3 +70,5 @@ Required for all `buildchecker` commands, except for `buildchecker history -load - `branch_test.go` contains integration tests against the GitHub API. Normally runs against recordings in `testdata` - to update `testdata`, run the tests with the `-update` flag. - All other tests are strictly unit tests. +Hello Sourcegraph! +Goodbye diff --git a/dev/ci/README.md b/dev/ci/README.md index ed4207a1fab4..129894eeb1d5 100644 --- a/dev/ci/README.md +++ b/dev/ci/README.md @@ -2,3 +2,5 @@ We dynamically generate our CI pipeline for [Buildkite](https://buildkite.com/sourcegraph/sourcegraph) based on the output of [gen-pipeline.go](./gen-pipeline.go). To learn more, refer to the [continuous integration docs](https://docs-legacy.sourcegraph.com/dev/background-information/ci). +Hello Sourcegraph! +Goodbye diff --git a/dev/ci/trivy/README.md b/dev/ci/trivy/README.md index 20139b20a84e..5ee44eb9ba71 100644 --- a/dev/ci/trivy/README.md +++ b/dev/ci/trivy/README.md @@ -3,3 +3,5 @@ The folder contains the scripts that our CI pipeline uses to run vulnerability scans with [Trivy](https://aquasecurity.github.io/trivy/). See https://docs-legacy.sourcegraph.com/dev/background-information/ci for more information. +Hello Sourcegraph! +Goodbye diff --git a/dev/clustering/README.md b/dev/clustering/README.md index 0c0ad3377a12..6404f68e1595 100644 --- a/dev/clustering/README.md +++ b/dev/clustering/README.md @@ -45,3 +45,5 @@ The output TSV file contains the original data plus a new "cluster" column with - SentenceTransformers - generating embeddings - sklearn - KMeans clustering - matplotlib - visualization +Hello Sourcegraph! +Goodbye diff --git a/dev/codehost_testing/README.md b/dev/codehost_testing/README.md index f6f5a65f8b48..03763bb861aa 100644 --- a/dev/codehost_testing/README.md +++ b/dev/codehost_testing/README.md @@ -108,3 +108,5 @@ After the scenario has been successfully been applied, the corresponding Codehos ``` **IMPORTANT** Calling `Get()` on any scenario resource before the scenario has been applied will result in an error. **Get() will only return the Codehost resource if the scenario has been applied**. +Hello Sourcegraph! +Goodbye diff --git a/dev/codeintel-qa/README.md b/dev/codeintel-qa/README.md index 409fd3f50bce..149300ce6aae 100644 --- a/dev/codeintel-qa/README.md +++ b/dev/codeintel-qa/README.md @@ -86,3 +86,5 @@ rm -rf testdata/indexes/ ``` Then run the `clone-and-index` step described above. +Hello Sourcegraph! +Goodbye diff --git a/dev/depgraph/README.md b/dev/depgraph/README.md index 0be43038e59a..80a50456a04d 100644 --- a/dev/depgraph/README.md +++ b/dev/depgraph/README.md @@ -43,3 +43,5 @@ This command ensures the following lint passes. Violations of the lint rules wil - **NoLooseCommands**: Report main packages outside of known command roots - **NoReachingIntoCommands**: Report packages that import code from an unrelated command - **NoUnusedSharedCommandCode**: Report packages that could be moved into an internal package +Hello Sourcegraph! +Goodbye diff --git a/dev/deployment-lag-notifier/README.md b/dev/deployment-lag-notifier/README.md index ba6ebea3c4c2..ea24590566a9 100644 --- a/dev/deployment-lag-notifier/README.md +++ b/dev/deployment-lag-notifier/README.md @@ -23,3 +23,5 @@ If you would like to actually post the message, either configure the `-slack-web ## How it works This is inspired by `sg live cloud`. It is run on a [fixed schedule]() to check that code deployed to Cloud is recent. If it detects that the deployed version on Cloud differs by more than an allowed number of commits from the tip of `sourcegraph/sourcegraph@main`, an alert will be sent to a Slack channel. +Hello Sourcegraph! +Goodbye diff --git a/dev/deployment-notifier/README.md b/dev/deployment-notifier/README.md index bb227df492ac..5200cc028d33 100644 --- a/dev/deployment-notifier/README.md +++ b/dev/deployment-notifier/README.md @@ -42,3 +42,5 @@ To avoid spamming comments, Deployment Notifier comes with a few flags to help: The tests uses recorded responses from GitHub, to update the cassettes, uses the `-update` flag when running `go test`. Make sure that the `GITHUB_TOKEN` environment is defined when doing so. +Hello Sourcegraph! +Goodbye diff --git a/dev/gqltest/README.md b/dev/gqltest/README.md index a7de191b5a11..eb2ae1a69339 100644 --- a/dev/gqltest/README.md +++ b/dev/gqltest/README.md @@ -29,3 +29,5 @@ Adding new tests to this test suite is as easy as adding a Go test, here are som - Delete new users created during the test. - Delete external services created during the test. - Although, sometimes you would not want to delete an entity so you could login and inspect the failure state. +Hello Sourcegraph! +Goodbye diff --git a/dev/insight-data-gen/README.md b/dev/insight-data-gen/README.md index 934d1d38629f..fa72156e7fb3 100644 --- a/dev/insight-data-gen/README.md +++ b/dev/insight-data-gen/README.md @@ -85,3 +85,5 @@ salami 2. Launch `src-cli` and mount generated repos to Sourcegraph 3. Gracefully handle duplicate commits 4. Generate the manifest with some help input rather than require the manifest manually created +Hello Sourcegraph! +Goodbye diff --git a/dev/linearhooks/README.md b/dev/linearhooks/README.md index c47ee9936f50..c89712154183 100644 --- a/dev/linearhooks/README.md +++ b/dev/linearhooks/README.md @@ -41,3 +41,5 @@ Unfortunately, Linear only supports `authorization_code` grant type, but not `cl ## Configuration Refer to [config.example.yaml](./config.example.yaml) +Hello Sourcegraph! +Goodbye diff --git a/dev/linters/staticcheck/README.md b/dev/linters/staticcheck/README.md index 5e53b8bee490..fa56f41a0037 100644 --- a/dev/linters/staticcheck/README.md +++ b/dev/linters/staticcheck/README.md @@ -13,3 +13,5 @@ Set the importpath to github.com/sourcegraph/sourcegraph/dev/llinters/staticchec ## How to regenerate the analyzers To regenerate the `BUILD.bazel` and `analyzer.bzl` files run `go generate` in `dev/linters/staticcheck`. This effectively runs `go run ./cmd/gen.go` +Hello Sourcegraph! +Goodbye diff --git a/dev/managedservicesplatform/internal/resource/README.md b/dev/managedservicesplatform/internal/resource/README.md index 3508a6087b1c..fa535d4be668 100644 --- a/dev/managedservicesplatform/internal/resource/README.md +++ b/dev/managedservicesplatform/internal/resource/README.md @@ -25,3 +25,5 @@ In each resource, apply the following conventions to all CDKTF resources created - Use IDs _prefixed_ with the resource's `id` using `(resourceid.ID).TerraformID(...)`, to avoid collisions. Within each scope/[stack](../stack/README.md), IDs must be unique. - Set _display_ names to the resource's `id`, as these do not have uniqueness constraints. +Hello Sourcegraph! +Goodbye diff --git a/dev/managedservicesplatform/operationdocs/diagram/assets/README.md b/dev/managedservicesplatform/operationdocs/diagram/assets/README.md index e1ece5232a1f..64978b3ede66 100644 --- a/dev/managedservicesplatform/operationdocs/diagram/assets/README.md +++ b/dev/managedservicesplatform/operationdocs/diagram/assets/README.md @@ -5,3 +5,5 @@ Diagrams are primarily sourced from the [D2 Icons](https://icons.terrastruct.com Icons for other services can generally be found from a company's branding/PR page. Files must be encoded as a data URI such that they can be embedded into the SVGs. Conversion can be using a [converter tool](https://www.adminbooster.com/tool/data_uri) +Hello Sourcegraph! +Goodbye diff --git a/dev/managedservicesplatform/stacks/README.md b/dev/managedservicesplatform/stacks/README.md index dd75e5618ea9..c71e1d1738c2 100644 --- a/dev/managedservicesplatform/stacks/README.md +++ b/dev/managedservicesplatform/stacks/README.md @@ -28,3 +28,5 @@ func NewStack(stacks *stack.Set, vars Variables) (*CrossStackOutput, error) { // ... } ``` +Hello Sourcegraph! +Goodbye diff --git a/dev/perforce/test-helpers/README.md b/dev/perforce/test-helpers/README.md index e6fa26e5fd01..b15046273567 100644 --- a/dev/perforce/test-helpers/README.md +++ b/dev/perforce/test-helpers/README.md @@ -60,3 +60,5 @@ A helper script that idempotently: **Run this script whenever you run a new test case and need to change the group membership.** _The address of the Perforce server, the superuser credentials to use, the test user credentials, and the depot name are all configurable via environment variables. See the beginning of [./p4-setup-protections.sh](./p4-setup-protections.sh) for more information._ +Hello Sourcegraph! +Goodbye diff --git a/dev/pr-auditor/README.md b/dev/pr-auditor/README.md index f2c4d477e17e..9c66d60407f0 100644 --- a/dev/pr-auditor/README.md +++ b/dev/pr-auditor/README.md @@ -1,3 +1,5 @@ # pr-auditor This action has been moved to https://github.com/sourcegraph/pr-auditor +Hello Sourcegraph! +Goodbye diff --git a/dev/prometheus/README.md b/dev/prometheus/README.md index 4b66da659be5..86181eacecd1 100644 --- a/dev/prometheus/README.md +++ b/dev/prometheus/README.md @@ -5,3 +5,5 @@ This directory contains configuration for the [Prometheus](https://prometheus.io This directory is mounted into the `prometheus` container. After making your changes to this directory, simply `docker restart prometheus` for your changes to take effect (depending on your change, Prometheus may respond to it as soon as you save the file). +Hello Sourcegraph! +Goodbye diff --git a/dev/scaletesting/README.md b/dev/scaletesting/README.md index d5c7954798b3..fed50caea70f 100644 --- a/dev/scaletesting/README.md +++ b/dev/scaletesting/README.md @@ -7,3 +7,5 @@ This package is a collection of CLI tools to perform various operations in batch - `codehostcopy`: copies repositories from one codehost to another. Please see the individual READMEs for how to use these tools. +Hello Sourcegraph! +Goodbye diff --git a/dev/scaletesting/bulkrepocreate/README.md b/dev/scaletesting/bulkrepocreate/README.md index a4b8446e9a15..bea960f8eec3 100644 --- a/dev/scaletesting/bulkrepocreate/README.md +++ b/dev/scaletesting/bulkrepocreate/README.md @@ -35,3 +35,5 @@ _The script will run `git push` which requires to authenticate as the user pushi > Can I `ctrl-c` the script as we have a `-resume` flag? No. The script is made to handle errors from third parties, it's not handling anything else. +Hello Sourcegraph! +Goodbye diff --git a/dev/scaletesting/bulkreposettings/README.md b/dev/scaletesting/bulkreposettings/README.md index 30ba88cca93a..c271378b86e5 100644 --- a/dev/scaletesting/bulkreposettings/README.md +++ b/dev/scaletesting/bulkreposettings/README.md @@ -23,3 +23,5 @@ Flags: - Managing the workload - `state`: sqlite database name to create or resume from (default `state.db`) - `retry`: Number of times to retry pushind (can be tedious at high concurrency) +Hello Sourcegraph! +Goodbye diff --git a/dev/scaletesting/codehostcopy/README.md b/dev/scaletesting/codehostcopy/README.md index 84b72b5d931c..c25fa46410e4 100644 --- a/dev/scaletesting/codehostcopy/README.md +++ b/dev/scaletesting/codehostcopy/README.md @@ -15,3 +15,5 @@ To get an example config, you can do: ``` codehostcopy example > my-config.cue ``` +Hello Sourcegraph! +Goodbye diff --git a/dev/scaletesting/syntheticgithubdata/README.md b/dev/scaletesting/syntheticgithubdata/README.md index 628ed82db29d..d043b72f9d4b 100644 --- a/dev/scaletesting/syntheticgithubdata/README.md +++ b/dev/scaletesting/syntheticgithubdata/README.md @@ -23,3 +23,5 @@ A CLI tool that seeds a GitHub Enterprise instance with synthetic organisations, - `action`: Whether to 'create', 'delete', or 'validate' the synthetic data (default: `create`) - `resume`: Temporary state to use to resume progress if interrupted (default: `state.db`) - `generateTokens`: "Whether to generate new impersonation OAuth tokens for users (default: `false`) +Hello Sourcegraph! +Goodbye diff --git a/dev/sg/README.md b/dev/sg/README.md index 0802b8e7cccb..026426e0279b 100644 --- a/dev/sg/README.md +++ b/dev/sg/README.md @@ -27,3 +27,5 @@ `sg` is the CLI tool that Sourcegraph developers can use to develop Sourcegraph. Learn more about it [here](https://docs-legacy.sourcegraph.com/dev/background-information/sg). +Hello Sourcegraph! +Goodbye diff --git a/dev/sg/internal/usershell/autocomplete/README.md b/dev/sg/internal/usershell/autocomplete/README.md index fe18ab4f20c4..df0cff6f759a 100644 --- a/dev/sg/internal/usershell/autocomplete/README.md +++ b/dev/sg/internal/usershell/autocomplete/README.md @@ -1,3 +1,5 @@ # autocomplete scripts Autocomplete scripts are sourced from [`urfave/cli/autocomplete`](https://github.com/urfave/cli/tree/main/autocomplete). +Hello Sourcegraph! +Goodbye diff --git a/dev/sg/root/README.md b/dev/sg/root/README.md index b3c285e01188..1ccf41a25bdb 100644 --- a/dev/sg/root/README.md +++ b/dev/sg/root/README.md @@ -1 +1,3 @@ TODO: Move me into some shared area. This code is also used in dev/depgraph +Hello Sourcegraph! +Goodbye diff --git a/dev/tilt/README.md b/dev/tilt/README.md index ce4630fa121c..3dfc820e6b69 100644 --- a/dev/tilt/README.md +++ b/dev/tilt/README.md @@ -30,3 +30,5 @@ Tilt will start an initial build of the frontend and deploy it. Whenever you are Similar to the `frontend` you can add other `custom_build` statements to your `Tiltfile` to build and watch the other servers. There are many `Tiltfile` modifications that can help accelerate the edit/build/deploy cycle: https://docs.tilt.dev/example_go.html +Hello Sourcegraph! +Goodbye diff --git a/dev/update-embeddings-list/README.md b/dev/update-embeddings-list/README.md index 2454842ac4e7..70b948d48ec6 100644 --- a/dev/update-embeddings-list/README.md +++ b/dev/update-embeddings-list/README.md @@ -14,3 +14,5 @@ To work on this file: Alternatively you can also: 1. run `pnpm run start` +Hello Sourcegraph! +Goodbye diff --git a/dev/zoekt/README.md b/dev/zoekt/README.md index ddbbeb348480..3dd4a74f5487 100644 --- a/dev/zoekt/README.md +++ b/dev/zoekt/README.md @@ -4,3 +4,5 @@ This directory contains utilities that are useful for Zoekt development. - [update](./update) Updates the version of zoekt in `go.mod`. - [wrapper](./wrapper) Is used by our dev Procfile to control behaviour. +Hello Sourcegraph! +Goodbye diff --git a/docker-images/README.md b/docker-images/README.md index 9c811653e1d0..3326ff81140a 100644 --- a/docker-images/README.md +++ b/docker-images/README.md @@ -19,3 +19,5 @@ All images in this directory are built and published automatically on CI: 1. Create a `build.sh` and add your publishing script to it - the script should end with `docker tag ... "$IMAGE"`. See the scripts in this directory for examples. 2. Ensure your new script is executable with `chmod +x build.sh` (you can try it via e.g. `IMAGE=fake-repo/cadvisor:latest docker-images/$SERVICE/build.sh`, or by [building a test image](https://handbook.sourcegraph.com/engineering/deployments#building-docker-images-for-a-specific-branch)) 3. Add an image to the automated builds pipeline by adding it to [`SourcegraphDockerImages`](https://sourcegraph.com/search?q=repo:%5Egithub%5C.com/sourcegraph/sourcegraph%24+file:%5Edev/ci/images/images%5C.go+SourcegraphDockerImages&patternType=literal). +Hello Sourcegraph! +Goodbye diff --git a/docker-images/cadvisor/README.md b/docker-images/cadvisor/README.md index 1efb4955286d..9e2b3a4b863c 100644 --- a/docker-images/cadvisor/README.md +++ b/docker-images/cadvisor/README.md @@ -40,3 +40,5 @@ Linux c74b74199c86 5.10.104-linuxkit #1 SMP Thu Mar 17 17:08:06 UTC 2022 x86_64 To update sourcegraph/cadvisor, modify by the digest in the Dockerfile's `FROM:` line to the digest of the multi-arch image you identified above, and update the `com.sourcegraph.cadvisor.version` label. The image is built by Buildkite CI, so after merging it will be built and deployed automatically. +Hello Sourcegraph! +Goodbye diff --git a/docker-images/codeinsights-db/README.md b/docker-images/codeinsights-db/README.md index 5d8620ab36a9..b3e4c00cb36a 100644 --- a/docker-images/codeinsights-db/README.md +++ b/docker-images/codeinsights-db/README.md @@ -17,3 +17,5 @@ Please note that migrating from the Alpine image, this require a manual step to - Build: `bazel build //docker-images/codeinsights-db:image_tarball` - Test: `bazel build //docker-images/codeinsights-db:image_test` +Hello Sourcegraph! +Goodbye diff --git a/docker-images/codeintel-db/README.md b/docker-images/codeintel-db/README.md index cc25aff22f55..0df87ca3522b 100644 --- a/docker-images/codeintel-db/README.md +++ b/docker-images/codeintel-db/README.md @@ -17,3 +17,5 @@ Please note that migrating from the Alpine image, this require a manual step to - Build: `bazel build //docker-images/codeintel-db:image_tarball` - Test: `bazel build //docker-images/codeintel-db:image_test` +Hello Sourcegraph! +Goodbye diff --git a/docker-images/executor-vm/README.md b/docker-images/executor-vm/README.md index 65bca3bb8b5d..5ebe88e2cc25 100644 --- a/docker-images/executor-vm/README.md +++ b/docker-images/executor-vm/README.md @@ -3,3 +3,5 @@ We produce a version of Ubuntu 20.04 (Focal Fossa), losely inspired by [weaveworks/ignite-ubuntu:20.04-amd64](https://github.com/weaveworks/ignite/blob/46bdd5d48425c4245fbe895e7da3621f491c3660/images/ubuntu/Dockerfile) that contains additional dependencies and config tweaks for the Sourcegraph executor fircracker VMs. This image serves as the base image for [Firecracker](https://github.com/firecracker-microvm/firecracker) virtual machines in which we run user configured containers and code. +Hello Sourcegraph! +Goodbye diff --git a/docker-images/grafana/README.md b/docker-images/grafana/README.md index 125c03c70dc0..0017192d38f1 100644 --- a/docker-images/grafana/README.md +++ b/docker-images/grafana/README.md @@ -24,3 +24,5 @@ will be detected automatically while Grafana is running. More behavior can be controlled with [environmental variables](https://grafana.com/docs/installation/configuration/). +Hello Sourcegraph! +Goodbye diff --git a/docker-images/initcontainer/README.md b/docker-images/initcontainer/README.md index c64e2c87fffe..aa3cc523f717 100644 --- a/docker-images/initcontainer/README.md +++ b/docker-images/initcontainer/README.md @@ -1 +1,3 @@ Simple container used as an initContainer in several places, to replace the use of sourcegraph/alpine-3.14. +Hello Sourcegraph! +Goodbye diff --git a/docker-images/opentelemetry-collector/README.md b/docker-images/opentelemetry-collector/README.md index 0e98394bd129..9ba909fa2248 100644 --- a/docker-images/opentelemetry-collector/README.md +++ b/docker-images/opentelemetry-collector/README.md @@ -34,3 +34,5 @@ Each configuration requires environment variables to configure certain values - To learn more about configuration in general, see the official [collector configuration docs](https://opentelemetry.io/docs/collector/configuration). In the out-of-the-box configurations, debug pages ("zPages") are available at port 55679 by default - see [Exposed zPages routes](https://github.com/open-telemetry/opentelemetry-collector/blob/main/extension/zpagesextension/README.md#exposed-zpages-routes). +Hello Sourcegraph! +Goodbye diff --git a/docker-images/postgres-12-alpine/README.md b/docker-images/postgres-12-alpine/README.md index 45a76fa53924..3fe693e0cc2f 100644 --- a/docker-images/postgres-12-alpine/README.md +++ b/docker-images/postgres-12-alpine/README.md @@ -17,3 +17,5 @@ Please note that migrating from the Alpine image, this require a manual step to - Build: `bazel build //docker-images/postgres-12-alpine:image_tarball` - Test: `bazel build //docker-images/postgres-12-alpine:image_test` +Hello Sourcegraph! +Goodbye diff --git a/docker-images/prometheus/README.md b/docker-images/prometheus/README.md index d708c4f2eae1..f20fa26ef208 100644 --- a/docker-images/prometheus/README.md +++ b/docker-images/prometheus/README.md @@ -29,3 +29,5 @@ You can specify additional flags to pass to Prometheus by setting the environmen `prom-wrapper` also accepts a few configuration options through environment variables - see [`cmd/prom-wrapper/main.go`](./cmd/prom-wrapper/main.go) for more details. Alertmanager components can be disabled entirely with `DISABLE_ALERTMANAGER=true`. +Hello Sourcegraph! +Goodbye diff --git a/docker-images/prometheus/cmd/prom-wrapper/README.md b/docker-images/prometheus/cmd/prom-wrapper/README.md index e98370e33859..6728abf5551b 100644 --- a/docker-images/prometheus/cmd/prom-wrapper/README.md +++ b/docker-images/prometheus/cmd/prom-wrapper/README.md @@ -1,3 +1,5 @@ # prom-wrapper Prom-wrapper is a service that ships with the [Sourcegraph Prometheus image](https://docs-legacy.sourcegraph.com/dev/background-information/observability/prometheus). +Hello Sourcegraph! +Goodbye diff --git a/docker-images/syntax-highlighter/README.md b/docker-images/syntax-highlighter/README.md index 481e258575a0..c6de0700ef04 100644 --- a/docker-images/syntax-highlighter/README.md +++ b/docker-images/syntax-highlighter/README.md @@ -122,3 +122,5 @@ $ cargo update -p syntect ## Supported languages: Run: `cargo run --bin syntect_server` to see supported languages. +Hello Sourcegraph! +Goodbye diff --git a/docker-images/syntax-highlighter/crates/scip-syntax/README.md b/docker-images/syntax-highlighter/crates/scip-syntax/README.md index 9a48dd9b537b..2ee476fbdc30 100644 --- a/docker-images/syntax-highlighter/crates/scip-syntax/README.md +++ b/docker-images/syntax-highlighter/crates/scip-syntax/README.md @@ -118,3 +118,5 @@ cargo run -- index --language java --out ./index.scip file1.java file2.java ... ```bash bazel run //docker-images/syntax-highlighter/crates/scip-syntax -- index --language java --out ./index.scip file1.java file2.java ... ``` +Hello Sourcegraph! +Goodbye diff --git a/docker-images/syntax-highlighter/crates/syntax-analysis/README.md b/docker-images/syntax-highlighter/crates/syntax-analysis/README.md index 9f45b1cb2d67..9e8041038806 100644 --- a/docker-images/syntax-highlighter/crates/syntax-analysis/README.md +++ b/docker-images/syntax-highlighter/crates/syntax-analysis/README.md @@ -41,3 +41,5 @@ fn main() { [locals query DSL]: docs/locals-query-dsl.md [locals scoping]: docs/locals-scoping.md [tree-sitter query]: https://tree-sitter.github.io/tree-sitter/using-parsers#pattern-matching-with-queries +Hello Sourcegraph! +Goodbye diff --git a/docker-images/syntax-highlighter/crates/tree-sitter-all-languages/README.md b/docker-images/syntax-highlighter/crates/tree-sitter-all-languages/README.md index 1c7a7f32363a..03b0f39ede8c 100644 --- a/docker-images/syntax-highlighter/crates/tree-sitter-all-languages/README.md +++ b/docker-images/syntax-highlighter/crates/tree-sitter-all-languages/README.md @@ -14,3 +14,5 @@ we are building and loading grammars and sync them all on the same tree-sitter v - Enable the highlights in `src/highlight.rs` - Add a snapshot test - Done! +Hello Sourcegraph! +Goodbye diff --git a/internal/appliance/dev/compare-helm/README.md b/internal/appliance/dev/compare-helm/README.md index cebf000e5b3f..3cdec66449bc 100644 --- a/internal/appliance/dev/compare-helm/README.md +++ b/internal/appliance/dev/compare-helm/README.md @@ -50,3 +50,5 @@ The order of resources in golden fixtures, and the order of keys in a given yaml document, shouldn't matter. This utility normalizes yaml documents (by unmarhsalling and re-marshalling), and also sorts the golden fixture into the same order as the helm output (by `{kind, metadata.name}`). +Hello Sourcegraph! +Goodbye diff --git a/internal/authz/providers/perforce/cmd/scanprotects/README.md b/internal/authz/providers/perforce/cmd/scanprotects/README.md index 423614bb1df1..689b3c0434e0 100644 --- a/internal/authz/providers/perforce/cmd/scanprotects/README.md +++ b/internal/authz/providers/perforce/cmd/scanprotects/README.md @@ -87,3 +87,5 @@ p4 protects -u USER | ./scanprotects -d "//some/test/depot/" |& jq '{"Body": .Bo } ... ``` +Hello Sourcegraph! +Goodbye diff --git a/internal/cmd/ghe-feeder/README.md b/internal/cmd/ghe-feeder/README.md index d9cf39f30f02..94662985de87 100644 --- a/internal/cmd/ghe-feeder/README.md +++ b/internal/cmd/ghe-feeder/README.md @@ -1,3 +1,5 @@ # GHE feeder tool Please see [Handbook entry](https://handbook.sourcegraph.com/engineering/distribution/tools/ghe_feeder). +Hello Sourcegraph! +Goodbye diff --git a/internal/cmd/git-combine/README.md b/internal/cmd/git-combine/README.md index b08f68bb9f46..502a1daf9a72 100644 --- a/internal/cmd/git-combine/README.md +++ b/internal/cmd/git-combine/README.md @@ -58,3 +58,5 @@ This script will print the size of the working copy in Gb: git ls-tree -r --long HEAD | awk '$4 != "-" { total += $4 } END { print total / 1024 / 1024 / 1024.0 }' ``` +Hello Sourcegraph! +Goodbye diff --git a/internal/cmd/init-sg/README.md b/internal/cmd/init-sg/README.md index 23b28fc4c214..2beabc6857df 100644 --- a/internal/cmd/init-sg/README.md +++ b/internal/cmd/init-sg/README.md @@ -77,3 +77,5 @@ The format for the external service json file is as follows, multiple github ext } ] ``` +Hello Sourcegraph! +Goodbye diff --git a/internal/cmd/progress-bot/README.md b/internal/cmd/progress-bot/README.md index d97b5ff5f717..de764a5f380c 100644 --- a/internal/cmd/progress-bot/README.md +++ b/internal/cmd/progress-bot/README.md @@ -17,3 +17,5 @@ Usage of ./progress-bot: The `progress-bot` is deployed with [this GitHub action](../../../.github/workflows/progress.yml). In order to deploy a new version, first run `docker build -t sourcegraph/progress-bot .` and then `docker push sourcegraph/progress-bot`. +Hello Sourcegraph! +Goodbye diff --git a/internal/cmd/search-blitz/README.md b/internal/cmd/search-blitz/README.md index 716e98c11ded..3f6f2b0f699c 100644 --- a/internal/cmd/search-blitz/README.md +++ b/internal/cmd/search-blitz/README.md @@ -40,3 +40,5 @@ kubectl port-forward search-blitz-0 3000:3000 -n monitoring ``` open http://localhost:3000 +Hello Sourcegraph! +Goodbye diff --git a/internal/cmd/tracking-issue/README.md b/internal/cmd/tracking-issue/README.md index 481a74913868..550aeb7099bb 100644 --- a/internal/cmd/tracking-issue/README.md +++ b/internal/cmd/tracking-issue/README.md @@ -27,3 +27,5 @@ In order to deploy a new version, first run `docker build -t sourcegraph/trackin Run the tests with `go test`, update fixtures (i.e. GitHub issues and PRs data) with `go test -update.fixture` and update the generated tracking issue golden file with `go test -update`. You can also run the tool manually in `-dry` mode to visualize the resulting tracking issues without updating them on GitHub. +Hello Sourcegraph! +Goodbye diff --git a/internal/codeintel/autoindexing/internal/inference/lua/README.md b/internal/codeintel/autoindexing/internal/inference/lua/README.md index e19290a1e8a0..7019f9b010fb 100644 --- a/internal/codeintel/autoindexing/internal/inference/lua/README.md +++ b/internal/codeintel/autoindexing/internal/inference/lua/README.md @@ -7,3 +7,5 @@ this directory. We could investigate using something like Selene or other tools to enforce that we don't have any typos across Lua-Go boundary, but I'll leave the for future exploration. +Hello Sourcegraph! +Goodbye diff --git a/internal/codeintel/ranking/README.md b/internal/codeintel/ranking/README.md index 33f25e3643a4..086e3507de00 100644 --- a/internal/codeintel/ranking/README.md +++ b/internal/codeintel/ranking/README.md @@ -1,3 +1,5 @@ # Ranking This package is an experimental service to show value in ranking search results. Do not depend on this API as it's unlikely to remain stable for some time. +Hello Sourcegraph! +Goodbye diff --git a/internal/codeintel/uploads/internal/commitgraph/README.md b/internal/codeintel/uploads/internal/commitgraph/README.md index 803a5f05ef3d..f095f02b6e4e 100644 --- a/internal/codeintel/uploads/internal/commitgraph/README.md +++ b/internal/codeintel/uploads/internal/commitgraph/README.md @@ -124,3 +124,5 @@ We then run a query to compare the actual table and the temporary table and inse ### TODO: Queries for commits not yet in the annotated commit graph When information is requested for an unknown commit in a repository we ask git server for a fragment of the commit graph that includes the commit and "graft" it onto our existing graph +Hello Sourcegraph! +Goodbye diff --git a/internal/database/migration/cliutil/drift-schemas/README.md b/internal/database/migration/cliutil/drift-schemas/README.md index 02787975ba07..2627686cc50f 100644 --- a/internal/database/migration/cliutil/drift-schemas/README.md +++ b/internal/database/migration/cliutil/drift-schemas/README.md @@ -3,3 +3,5 @@ This directory contains the script that generates squashed definitions from historic tagged commits. This data allows the drift utilities to work on instances prior to Sourcegraph 3.42, when the squashed definitions were stored reliably in the Git tree. +Hello Sourcegraph! +Goodbye diff --git a/internal/database/migration/shared/data/cmd/generator/README.md b/internal/database/migration/shared/data/cmd/generator/README.md index 80466b078cbe..756581422c5f 100644 --- a/internal/database/migration/shared/data/cmd/generator/README.md +++ b/internal/database/migration/shared/data/cmd/generator/README.md @@ -45,3 +45,5 @@ Once we roll out the new release process, we'll automate that step, so nobody ha TODO @jhchabran. If something goes wrong with the GCP bucket, the `internal/database/migration/shared/data/cmd/migrationdump/` tool can be used to regenerate all previous migration dumps. +Hello Sourcegraph! +Goodbye diff --git a/internal/encryption/README.md b/internal/encryption/README.md index e1088aa0cf94..7e57511bb145 100644 --- a/internal/encryption/README.md +++ b/internal/encryption/README.md @@ -45,3 +45,5 @@ The `encryption.Key` interface was built to be simple, and intended to be extend - AWS KMS - Mounted Key - No Op +Hello Sourcegraph! +Goodbye diff --git a/internal/hostmatcher/README.md b/internal/hostmatcher/README.md index 4d173b75c089..c25df17ffd67 100644 --- a/internal/hostmatcher/README.md +++ b/internal/hostmatcher/README.md @@ -5,3 +5,5 @@ This was done since depending on the full gitea source code created issues in tracking dependencies due to the large number of deps that change in the gitea project. In particular we had trouble updating and resolving a CVE from the dependency. +Hello Sourcegraph! +Goodbye diff --git a/internal/own/codeowners/README.md b/internal/own/codeowners/README.md index eeecb210f48a..4f91c9c105c3 100644 --- a/internal/own/codeowners/README.md +++ b/internal/own/codeowners/README.md @@ -5,3 +5,5 @@ If making changes to the proto file, please refresh the generated Go code by run ``` sg generate buf ``` +Hello Sourcegraph! +Goodbye diff --git a/internal/pbt/README.md b/internal/pbt/README.md index d8b1f8b4fddb..5ab644eeb6ac 100644 --- a/internal/pbt/README.md +++ b/internal/pbt/README.md @@ -2,3 +2,5 @@ Helper functions for property-based testing that can be shared across different packages using the [rapid](https://github.com/flyingmutant/rapid) library. +Hello Sourcegraph! +Goodbye diff --git a/internal/releaseregistry/README.md b/internal/releaseregistry/README.md index 44b679361a5e..80952a4e0bb1 100644 --- a/internal/releaseregistry/README.md +++ b/internal/releaseregistry/README.md @@ -2,3 +2,5 @@ A go client for . Please see that repository for more details. +Hello Sourcegraph! +Goodbye diff --git a/internal/requestclient/geolocation/data/README.md b/internal/requestclient/geolocation/data/README.md index e887977bad4b..9d24c5f8dd6e 100644 --- a/internal/requestclient/geolocation/data/README.md +++ b/internal/requestclient/geolocation/data/README.md @@ -12,3 +12,5 @@ The full licensing terms are available [here](https://db-ip.com/db/lite.php). This database was last updated 11/16/2023. We should aim to update this yearly to stay in sync with any changes. The database should be downloaded in MMDB format the ["IP to Country Lite" database page](https://db-ip.com/db/download/ip-to-country-lite). +Hello Sourcegraph! +Goodbye diff --git a/internal/telemetrygateway/v1/README.md b/internal/telemetrygateway/v1/README.md index e0a8a152d4bf..23706c014554 100644 --- a/internal/telemetrygateway/v1/README.md +++ b/internal/telemetrygateway/v1/README.md @@ -1,3 +1,5 @@ # THIS SERVICE SPECIFICATION HAS MOVED TO [`lib/telemetrygateway/v1`](../../../lib/telemetrygateway/v1/telemetrygateway.proto) A symlink to the service specification is maintained here to preserve existing documentation links. +Hello Sourcegraph! +Goodbye diff --git a/lib/README.md b/lib/README.md index 2b2c601122cf..aefaf01be06a 100644 --- a/lib/README.md +++ b/lib/README.md @@ -3,3 +3,5 @@ This directory is the root of a separate go module from the primary module rooted at sourcegraph/sourcegraph. This module exists to hold code that we want to reuse outside of the sourcegraph/sourcegraph repo. Code in this module should _not_ import from sourcegraph/sourcegraph or from other Sourcegraph repositories to avoid complicated dependency relationships. Instead consider moving code from elsewhere into this module. +Hello Sourcegraph! +Goodbye diff --git a/lib/codeintel/lsif/protocol/README.md b/lib/codeintel/lsif/protocol/README.md index 0f55400c3aae..34d8af94ec0d 100644 --- a/lib/codeintel/lsif/protocol/README.md +++ b/lib/codeintel/lsif/protocol/README.md @@ -1,3 +1,5 @@ # LSIF protocol utilities for Go This repository contains LSIF protocol struct definitions. +Hello Sourcegraph! +Goodbye diff --git a/lib/codeintel/tools/README.md b/lib/codeintel/tools/README.md index 7d2252326ebd..131547c38c10 100644 --- a/lib/codeintel/tools/README.md +++ b/lib/codeintel/tools/README.md @@ -135,3 +135,5 @@ This command validates the output of an LSIF indexer. The following properties a ## lsif-visualize Documentation coming soon. +Hello Sourcegraph! +Goodbye diff --git a/lib/codeintel/tools/merge-tries/README.md b/lib/codeintel/tools/merge-tries/README.md index dda04a3e7817..b6603aad96ed 100644 --- a/lib/codeintel/tools/merge-tries/README.md +++ b/lib/codeintel/tools/merge-tries/README.md @@ -17,3 +17,5 @@ from 125334 rows to 100428 rows reduction by 19.87% ``` +Hello Sourcegraph! +Goodbye diff --git a/lib/enterpriseportal/README.md b/lib/enterpriseportal/README.md index 4b33cfeabbeb..ff80ce9f1191 100644 --- a/lib/enterpriseportal/README.md +++ b/lib/enterpriseportal/README.md @@ -14,3 +14,5 @@ sg gen buf \ > [!CAUTION] > These APIs have **production dependents**. Make changes with extreme care for backwards-compatibility. +Hello Sourcegraph! +Goodbye diff --git a/migrations/README.md b/migrations/README.md index 7b423814d178..c087c4a1c2d6 100644 --- a/migrations/README.md +++ b/migrations/README.md @@ -41,3 +41,5 @@ To pass CI, you'll additionally need to: ### Reverting a migration If a reverted PR contains a DB migration, it may still have been applied to Sourcegraph.com, k8s.sgdev.org, etc. due to their rollout schedules. In some cases, it may also have been part of a Sourcegraph release. To fix this, you should create a PR to revert the migrations of that commit. The `sg migration revert ` command automates all the necessary changes the migration definitions. +Hello Sourcegraph! +Goodbye diff --git a/monitoring/README.md b/monitoring/README.md index 0740dffb6f01..f1ee60cb0d51 100644 --- a/monitoring/README.md +++ b/monitoring/README.md @@ -27,3 +27,5 @@ The Sourcegraph monitoring generator consists of three components: This is where the API for service monitoring definitions is defined, as well as the generator code that provides [its features](https://docs-legacy.sourcegraph.com/dev/background-information/observability/monitoring-generator#features). All features and capabilities for developed for the generator should align with the [Sourcegraph monitoring pillars](https://handbook.sourcegraph.com/engineering/observability/monitoring_pillars). +Hello Sourcegraph! +Goodbye diff --git a/monitoring/monitoring/README.md b/monitoring/monitoring/README.md index c0b1fec85a5c..c4d086a9ce8e 100755 --- a/monitoring/monitoring/README.md +++ b/monitoring/monitoring/README.md @@ -10,3 +10,5 @@ For more details about this package, refer to the [API documentation](https://so To learn more about developing monitoring for Sourcegraph, refer to [the observability developer's guide](https://docs-legacy.sourcegraph.com/dev/background-information/observability). To learn more about the Sourcegraph monitoring generator, refer to [the monitoring generator overview](https://docs-legacy.sourcegraph.com/dev/background-information/observability/monitoring-generator). +Hello Sourcegraph! +Goodbye diff --git a/schema/README.md b/schema/README.md index f89c24949e73..4e7d102ba1dc 100644 --- a/schema/README.md +++ b/schema/README.md @@ -18,3 +18,5 @@ Sourcegraph uses the following JSON Schemas: ## Known issues - The JSON Schema IDs (URIs) are of the form `https://sourcegraph.com/v1/*.schema.json#`, but these are not actually valid URLs. This means you generally need to supply them to JSON Schema validation libraries manually instead of having the validator fetch the schema from the web. +Hello Sourcegraph! +Goodbye diff --git a/testing/tools/upgradetest/README.md b/testing/tools/upgradetest/README.md index b07800012d5e..07bd44f85cab 100644 --- a/testing/tools/upgradetest/README.md +++ b/testing/tools/upgradetest/README.md @@ -56,3 +56,5 @@ sg ci bazel run //testing/tools/upgradetest:sh_upgradetest - test OOB migrations by seeding data. - read known bug versions from file, improve visability of known bugs versions, and select by test type - The stitched migration file requires that the local branch have `consts.go` `maxVersionString` updated before a new stitched-migration graph version is stamped via `VERSION` then `bazel run //dev:write_all_generated` is run. (this will be handled in bazel) +Hello Sourcegraph! +Goodbye diff --git a/tools/md2mdx/README.md b/tools/md2mdx/README.md index fbd15b389553..c361ff50095e 100644 --- a/tools/md2mdx/README.md +++ b/tools/md2mdx/README.md @@ -31,3 +31,5 @@ eliminates the trailing slash for index pages, but doesn't account for that when As mentioned above, it's pretty empirical. When finding some broken rendering, add a unit test in `main_test.go` and work out some way to get it right. +Hello Sourcegraph! +Goodbye diff --git a/tools/release/README.md b/tools/release/README.md index 130abd6f744a..319d2461ebd1 100644 --- a/tools/release/README.md +++ b/tools/release/README.md @@ -5,3 +5,5 @@ When a build is triggered with `RELEASE_PUBLIC=true`, the pipeline will consists of a single step that runs `promote_images.sh`. See TODO for the reference documentation for the new release process. +Hello Sourcegraph! +Goodbye diff --git a/wolfi-images/README.md b/wolfi-images/README.md index 70030e31dc16..461f882c0c02 100644 --- a/wolfi-images/README.md +++ b/wolfi-images/README.md @@ -60,3 +60,5 @@ See the [Add and Update Wolfi Base Images](https://docs-legacy.sourcegraph.com/d │ ) │ │ │ └──────────────────────────────────────┘ +Hello Sourcegraph! +Goodbye