Skip to content

Commit 6a5440a

Browse files
authored
Merge branch 'main' into app_central_twilio
2 parents 3cd14a3 + 2b3114b commit 6a5440a

File tree

2,912 files changed

+30916
-20337
lines changed

Some content is hidden

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

2,912 files changed

+30916
-20337
lines changed

.clabot

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
"JV0812",
66
"jpipkin1",
77
"JainM6",
8-
"swiatekm-sumo",
98
"docsSeema",
10-
"@dependabot[bot]",
11-
"dependabot[bot]",
129
"angadrandhawa1",
1310
"kkujawa-sumo",
14-
"open-source-collection-team",
1511
"mat-rumian",
1612
"perk-sumo",
1713
"jmartini-sumo",
@@ -28,12 +24,10 @@
2824
"agaur",
2925
"bhargavisumo",
3026
"ravipadala-sumo",
31-
"jd-sumo",
3227
"davidcarltonsumo",
3328
"pkazmir-sumo",
3429
"dkarabin-sumo",
3530
"kevin-sumo",
36-
"mgol-sumo",
3731
"crm6718",
3832
"mvirga-sumo",
3933
"tarunk2",
@@ -164,9 +158,20 @@
164158
"yasar-sumologic",
165159
"ruturajsumo",
166160
"bchrobot-mh",
167-
"sachin-sumologic"
161+
"sachin-sumologic",
162+
"Andrew-L-Johnson",
163+
"Ayah-Saleh",
164+
"ishaanahuja29",
165+
"raunakmandaokar",
166+
"bradtho",
167+
"Misterjohnson87",
168+
"lol3909",
169+
"Hellfire4959",
170+
"antonymartinsumo",
171+
"amee-sumo",
172+
"chetanchoudhary-sumo"
168173
],
169-
"message": "Thank you for your contribution! As this is an open source project, we require contributors to sign our Contributor License Agreement and do not have yours on file. To proceed with your PR, please [sign your name here](https://forms.gle/YgLddrckeJaCdZYA6) and we'll add you to our approved list of contributors.",
174+
"message": "Thank you for your contribution! As this is an open source project, we require contributors to sign our Contributor License Agreement and do not have yours on file. To proceed with your PR, please [sign your name here](https://forms.gle/YgLddrckeJaCdZYA6) and we will add you to our approved list of contributors.",
170175
"label": "cla-signed",
171176
"recheckComment": "The GitHub CLA Bot is rechecking to see that you have signed our CLA."
172177
}

.github/CODEOWNERS

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1+
# More details: https://help.github.com/articles/about-codeowners
2+
13
# Default owners for everything in the repo.
2-
* @kimsauce @jpipkin1 @JV0812 @mafsumo
4+
* @kimsauce @jpipkin1 @JV0812 @mafsumo @amee-sumo
35

4-
# Owners of all files in the `/docs` directory and its subdirectories.
5-
/docs/ @kimsauce @jpipkin1 @JV0812 @mafsumo
6+
# Owners of all files in the `/docs/integrations` directory.
7+
/docs/integrations/ @SumoLogic/sumoappdev @kimsauce @jpipkin1 @JV0812 @mafsumo @amee-sumo
68

79
# Owners of all files in the `/docs/send-data/kubernetes` directory.
8-
/docs/send-data/kubernetes/ @SumoLogic/open-source-collection-team @kimsauce @jpipkin1 @JV0812 @mafsumo
10+
/docs/send-data/kubernetes/ @SumoLogic/open-source-collection-team @SumoLogic/k8s-developers @kimsauce @jpipkin1 @JV0812 @mafsumo @amee-sumo
911

1012
# Owners of all files in the `/docs/send-data/opentelemetry-collector` directory and its subdirectories.
11-
/docs/send-data/opentelemetry-collector/ @SumoLogic/open-source-collection-team @kimsauce @mafsumo @JV0812
13+
/docs/send-data/opentelemetry-collector/ @SumoLogic/open-source-collection-team @kimsauce @jpipkin1 @mafsumo @JV0812 @amee-sumo
1214

1315
# GitHub workflow owners
1416
/.github/workflows/ @SumoLogic/open-source-collection-team @kimsauce

.github/workflows/build_and_deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828

2929
jobs:
3030
build-and-deploy:
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-22.04
3232
environment:
3333
name: ${{ inputs.environment }}
3434
url: ${{ inputs.hostname }}${{ inputs.base_url }}
@@ -41,13 +41,13 @@ jobs:
4141
AWS_DEFAULT_REGION: us-east-1
4242
AWS_EC2_METADATA_DISABLED: "true"
4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545
with:
4646
fetch-depth: 0
4747
- name: Set up Node.js
4848
uses: actions/setup-node@v3
4949
with:
50-
node-version: '18.x'
50+
node-version: '20.x'
5151
cache: 'yarn'
5252
- name: Docusaurus Webpack cache
5353
uses: actions/cache@v3
@@ -57,7 +57,7 @@ jobs:
5757
- name: Install awscli
5858
uses: unfor19/install-aws-cli-action@v1
5959
- name: Install jq
60-
run: sudo apt-get install jq
60+
run: sudo apt-get install -y jq
6161
- name: Install dependencies
6262
run: yarn install --frozen-lockfile
6363
- name: Build the Docusaurus site

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build-and-deploy:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
env:
1515
CI: true
1616
NODE_ENV: production

blog-collector/2015/12-31.md

Lines changed: 0 additions & 76 deletions
This file was deleted.

blog-collector/2016/12-31.md

Lines changed: 0 additions & 145 deletions
This file was deleted.

0 commit comments

Comments
 (0)