Skip to content

Commit cc0c442

Browse files
authored
Merge branch 'aws-otel:main' into main
2 parents 465455e + 95b226e commit cc0c442

File tree

131 files changed

+5179
-3012
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+5179
-3012
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,19 @@ updates:
1717
directory: '/'
1818
schedule:
1919
interval: "weekly"
20-
day: "sunday"
20+
day: "tuesday"
2121
labels:
2222
- "npm dependencies"
2323
rebase-strategy: "auto"
24+
2425
- package-ecosystem: "github-actions"
2526
directory: '/'
2627
schedule:
2728
interval: "weekly"
28-
day: "sunday"
29+
day: "tuesday"
2930
labels:
3031
- "actions"
32+
groups:
33+
github-actions-deps:
34+
patterns:
35+
- "*"

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v3.3.0
40+
uses: actions/checkout@v4.0.0
4141

4242
- name: Initialize CodeQL
4343
uses: github/codeql-action/init@v2

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
publish-smoke-test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3.3.0
16+
- uses: actions/checkout@v4.0.0
1717
- uses: enriikke/gatsby-gh-pages-action@v2
1818
env:
1919
GH_API_KEY: ${{ secrets.GITHUB_TOKEN }}
@@ -25,7 +25,7 @@ jobs:
2525
needs: publish-smoke-test
2626
steps:
2727
- name: Checkout Smoke Test Branch
28-
uses: actions/checkout@v3.3.0
28+
uses: actions/checkout@v4.0.0
2929
with:
3030
path: smoke-test
3131
ref: smoke-test
@@ -35,7 +35,7 @@ jobs:
3535
echo $ST_LC
3636
echo "SMOKE_TEST_LINE_COUNT=$ST_LC" >> $GITHUB_ENV
3737
- name: Checkout Published Branch
38-
uses: actions/checkout@v3.3.0
38+
uses: actions/checkout@v4.0.0
3939
with:
4040
path: published
4141
ref: gh-pages
@@ -58,7 +58,7 @@ jobs:
5858
needs: verify-smoke-test
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v3.3.0
61+
- uses: actions/checkout@v4.0.0
6262
with:
6363
ref: gh-pages
6464
- name: merge commit push

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- ubuntu-latest
1717
- windows-latest
1818
steps:
19-
- uses: actions/checkout@v3.3.0
19+
- uses: actions/checkout@v4.0.0
2020
- uses: actions/setup-node@v3
2121
with:
2222
node-version: '16'

DEV_GUIDE.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,17 @@
88
## Development Setup
99

1010
1. Clone this repository onto your local machine
11-
2. [Download and Set up Gatsby Environment](https://www.gatsbyjs.com/tutorial/part-zero/).
12-
3. Open up the project using your preferred code editor
13-
4. Install the required node modules for this project.
11+
2. Open up the project using your preferred code editor
12+
3. Install the required node modules for this project.
1413
```
1514
npm install
1615
```
17-
5. Disable GitHub API access (Used to fetch the list of contributors)
18-
Create a new file in the root called `.env.development` (See [Project Structure](#project-structure) for more information)
19-
Write the following line to it:
20-
```
21-
NO_GH_API_KEY=true
22-
```
2316
4. Start up the Gatsby site
2417
```
25-
npm start
18+
NO_GH_API_KEY=true npm start
2619
```
2720
5. Open http://localhost:8000 to check the site
2821
29-
**Obs**: The `NO_GH_API_KEY` environment variable can also be passed through command line. E.g.: `NO_GH_API_KEY=true npm run start`.
30-
3122
### Optional - Test the GitHub API integration
3223
3324
This step is optional and allows you to test that the list of contributors is being fetched from GitHub.

gatsby-config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ require("dotenv").config({
55
module.exports = {
66
// pathPrefix: "/",
77
siteMetadata: {
8-
title: 'AWS Open Distro for OpenTelemetry',
9-
siteTitle: `AWS Open Distro for OpenTelemetry`,
10-
defaultTitle: `AWS Open Distro for OpenTelemetry`,
8+
title: 'AWS Distro for OpenTelemetry',
9+
siteTitle: `AWS Distro for OpenTelemetry`,
10+
defaultTitle: `AWS Distro for OpenTelemetry`,
1111
siteTitleShort: `AWS Distro OpenTelemetry`,
12-
siteDescription: `Technical documentation for AWS Open Distro for OpenTelemetry`,
12+
siteDescription: `Technical documentation for AWS Distro for OpenTelemetry`,
1313
siteAuthor: `Amazon AWS Observability`,
1414
// siteImage: `/banner.png`,
1515
siteLanguage: `en`,

0 commit comments

Comments
 (0)