Skip to content

Commit 2ba1882

Browse files
committed
Merge remote-tracking branch 'origin/master' into fuchsnj/vrl_0.5.0
2 parents a8d6e85 + f79947c commit 2ba1882

Some content is hidden

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

51 files changed

+873
-557
lines changed

.github/audit.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ jobs:
1111
security_audit:
1212
runs-on: ubuntu-20.04
1313
steps:
14-
- uses: actions/checkout@v3
15-
with:
16-
submodules: "recursive"
14+
- uses: actions/checkout@v1
1715
- uses: actions-rs/audit-check@v1
1816
with:
1917
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/changes.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@ jobs:
119119
k8s: ${{ steps.filter.outputs.k8s }}
120120
steps:
121121
- uses: actions/checkout@v3
122-
with:
123-
submodules: "recursive"
124122

125123
- uses: dorny/paths-filter@v2
126124
id: filter
@@ -214,8 +212,6 @@ jobs:
214212
webhdfs: ${{ steps.filter.outputs.webhdfs }}
215213
steps:
216214
- uses: actions/checkout@v3
217-
with:
218-
submodules: "recursive"
219215

220216
# creates a yaml file that contains the filters for each integration,
221217
# extracted from the output of the `vdev int ci-paths` command, which

.github/workflows/cli.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ jobs:
2828
uses: actions/checkout@v3
2929
with:
3030
ref: ${{ steps.comment-branch.outputs.head_ref }}
31-
submodules: "recursive"
3231

3332
- name: Checkout branch
3433
if: ${{ github.event_name != 'issue_comment' }}
3534
uses: actions/checkout@v3
36-
with:
37-
submodules: "recursive"
3835

3936
- name: Cache Cargo registry + index
4037
uses: actions/cache@v3

.github/workflows/comment-trigger.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# /ci-run-unit-mac : runs Unit - Mac
1515
# /ci-run-unit-windows : runs Unit - Windows
1616
# /ci-run-environment : runs Environment Suite
17-
# /ci-run-install : runs Update install.sh Suite
1817
# /ci-run-regression : runs Regression Detection Suite
1918

2019
name: Comment Trigger
@@ -55,18 +54,21 @@ jobs:
5554
|| contains(github.event.comment.body, '/ci-run-unit-mac')
5655
|| contains(github.event.comment.body, '/ci-run-unit-windows')
5756
|| contains(github.event.comment.body, '/ci-run-environment')
58-
|| contains(github.event.comment.body, '/ci-run-install')
5957
|| contains(github.event.comment.body, '/ci-run-regression')
6058
)
6159
steps:
62-
- name: Validate issue comment
60+
- name: Get PR comment author
6361
id: comment
6462
uses: tspascoal/get-user-teams-membership@v2
6563
with:
6664
username: ${{ github.actor }}
6765
team: 'Vector'
6866
GITHUB_TOKEN: ${{ secrets.GH_PAT_ORG }}
6967

68+
- name: Validate author membership
69+
if: steps.comment.outputs.isTeamMember == 'false'
70+
run: exit 1
71+
7072
cli:
7173
needs: validate
7274
if: contains(github.event.comment.body, '/ci-run-all') || contains(github.event.comment.body, '/ci-run-cli')
@@ -109,12 +111,6 @@ jobs:
109111
uses: ./.github/workflows/environment.yml
110112
secrets: inherit
111113

112-
install:
113-
needs: validate
114-
if: contains(github.event.comment.body, '/ci-run-all') || contains(github.event.comment.body, '/ci-run-install')
115-
uses: ./.github/workflows/install-sh.yml
116-
secrets: inherit
117-
118114
regression:
119115
needs: validate
120116
if: contains(github.event.comment.body, '/ci-run-all') || contains(github.event.comment.body, '/ci-run-regression')

.github/workflows/compilation-timings.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
steps:
1818
- uses: colpal/actions-clean@v1
1919
- uses: actions/checkout@v3
20-
with:
21-
submodules: "recursive"
2220
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
2321
- run: bash scripts/environment/prepare.sh
2422
- run: cargo clean
@@ -35,8 +33,6 @@ jobs:
3533
steps:
3634
- uses: colpal/actions-clean@v1
3735
- uses: actions/checkout@v3
38-
with:
39-
submodules: "recursive"
4036
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
4137
- run: bash scripts/environment/prepare.sh
4238
- run: cargo clean
@@ -48,8 +44,6 @@ jobs:
4844
steps:
4945
- uses: colpal/actions-clean@v1
5046
- uses: actions/checkout@v3
51-
with:
52-
submodules: "recursive"
5347
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
5448
- run: bash scripts/environment/prepare.sh
5549
- run: cargo clean
@@ -61,8 +55,6 @@ jobs:
6155
steps:
6256
- uses: colpal/actions-clean@v1
6357
- uses: actions/checkout@v3
64-
with:
65-
submodules: "recursive"
6658
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
6759
- run: bash scripts/environment/prepare.sh
6860
- run: cargo clean
@@ -76,8 +68,6 @@ jobs:
7668
steps:
7769
- uses: colpal/actions-clean@v1
7870
- uses: actions/checkout@v3
79-
with:
80-
submodules: "recursive"
8171
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
8272
- run: bash scripts/environment/prepare.sh
8373
- run: cargo clean

.github/workflows/component_features.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@ jobs:
2626
uses: actions/checkout@v3
2727
with:
2828
ref: ${{ steps.comment-branch.outputs.head_ref }}
29-
submodules: "recursive"
3029

3130
- name: Checkout branch
3231
if: ${{ github.event_name != 'issue_comment' }}
3332
uses: actions/checkout@v3
34-
with:
35-
submodules: "recursive"
3633

3734
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
3835
- run: bash scripts/environment/prepare.sh

.github/workflows/cross.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,10 @@ jobs:
3939
uses: actions/checkout@v3
4040
with:
4141
ref: ${{ steps.comment-branch.outputs.head_ref }}
42-
submodules: "recursive"
4342

4443
- name: Checkout branch
4544
if: ${{ github.event_name != 'issue_comment' }}
4645
uses: actions/checkout@v3
47-
with:
48-
submodules: "recursive"
4946

5047
- uses: actions/cache@v3
5148
name: Cache Cargo registry + index
@@ -85,13 +82,6 @@ jobs:
8582
needs: cross-linux
8683
if: needs.cross-linux.result == 'success' && github.event_name == 'issue_comment'
8784
steps:
88-
- name: Validate issue comment
89-
uses: tspascoal/get-user-teams-membership@v2
90-
with:
91-
username: ${{ github.actor }}
92-
team: 'Vector'
93-
GITHUB_TOKEN: ${{ secrets.GH_PAT_ORG }}
94-
9585
- name: (PR comment) Get PR branch
9686
uses: xt0rted/pull-request-comment-branch@v2
9787
id: comment-branch

.github/workflows/environment.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,10 @@ jobs:
3434
uses: actions/checkout@v3
3535
with:
3636
ref: ${{ steps.comment-branch.outputs.head_ref }}
37-
submodules: "recursive"
3837

3938
- name: Checkout branch
4039
if: ${{ github.event_name != 'issue_comment' }}
4140
uses: actions/checkout@v3
42-
with:
43-
submodules: "recursive"
4441

4542
- name: Set up QEMU
4643
uses: docker/[email protected]

.github/workflows/gardener_remove_waiting_author.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
with:
13-
submodules: "recursive"
1412
- uses: actions-ecosystem/action-remove-labels@v1
1513
with:
1614
labels: "meta: awaiting author"

.github/workflows/install-sh.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ jobs:
2828
uses: actions/checkout@v3
2929
with:
3030
ref: ${{ steps.comment-branch.outputs.head_ref }}
31-
submodules: "recursive"
3231

3332
- name: Checkout branch
3433
if: ${{ github.event_name != 'issue_comment' }}
3534
uses: actions/checkout@v3
36-
with:
37-
submodules: "recursive"
3835

3936
- run: pip3 install awscli --upgrade --user
4037
- env:

.github/workflows/integration-comment.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,18 @@ jobs:
4646
runs-on: ubuntu-latest
4747
if: contains(github.event.comment.body, '/ci-run-integration') || contains(github.event.comment.body, '/ci-run-all')
4848
steps:
49-
- name: Validate issue comment
50-
if: github.event_name == 'issue_comment'
49+
- name: Get PR comment author
50+
id: comment
5151
uses: tspascoal/get-user-teams-membership@v2
5252
with:
5353
username: ${{ github.actor }}
5454
team: 'Vector'
5555
GITHUB_TOKEN: ${{ secrets.GH_PAT_ORG }}
5656

57+
- name: Validate author membership
58+
if: steps.comment.outputs.isTeamMember == 'false'
59+
run: exit 1
60+
5761
- name: (PR comment) Get PR branch
5862
uses: xt0rted/pull-request-comment-branch@v2
5963
id: comment-branch

.github/workflows/integration-test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,10 @@ jobs:
5454
uses: actions/checkout@v3
5555
with:
5656
ref: ${{ steps.comment-branch.outputs.head_ref }}
57-
submodules: "recursive"
5857

5958
- name: Checkout branch
6059
if: ${{ github.event_name != 'issue_comment' }}
6160
uses: actions/checkout@v3
62-
with:
63-
submodules: "recursive"
6461

6562
- run: sudo npm -g install @datadog/datadog-ci
6663

.github/workflows/k8s_e2e.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,10 @@ jobs:
8888
uses: actions/checkout@v3
8989
with:
9090
ref: ${{ steps.comment-branch.outputs.head_ref }}
91-
submodules: "recursive"
9291

9392
- name: Checkout branch
9493
if: ${{ github.event_name != 'issue_comment' }}
9594
uses: actions/checkout@v3
96-
with:
97-
submodules: "recursive"
9895

9996
- uses: actions/cache@v3
10097
with:
@@ -208,13 +205,10 @@ jobs:
208205
uses: actions/checkout@v3
209206
with:
210207
ref: ${{ steps.comment-branch.outputs.head_ref }}
211-
submodules: "recursive"
212208

213209
- name: Checkout branch
214210
if: ${{ github.event_name != 'issue_comment' }}
215211
uses: actions/checkout@v3
216-
with:
217-
submodules: "recursive"
218212

219213
- uses: actions/download-artifact@v3
220214
with:

.github/workflows/misc.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ jobs:
2828
uses: actions/checkout@v3
2929
with:
3030
ref: ${{ steps.comment-branch.outputs.head_ref }}
31-
submodules: "recursive"
3231

3332
- name: Checkout branch
3433
if: ${{ github.event_name != 'issue_comment' }}
3534
uses: actions/checkout@v3
36-
with:
37-
submodules: "recursive"
3835

3936
- uses: actions/cache@v3
4037
name: Cache Cargo registry + index

.github/workflows/msrv.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v3
19-
with:
20-
submodules: "recursive"
2119
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
2220
- run: cargo install cargo-msrv --version 0.15.1
2321
- run: cargo msrv verify

0 commit comments

Comments
 (0)