Skip to content

Commit 49ae368

Browse files
authored
Merge branch 'main' into endorama-patch-1
2 parents 636da21 + 15c0723 commit 49ae368

22 files changed

+210
-191
lines changed

.ci/bump-elastic-stack-snapshot.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ scms:
2020
default:
2121
kind: github
2222
spec:
23-
user: '{{ requiredEnv "GIT_USER" }}'
24-
email: '{{ requiredEnv "GIT_EMAIL" }}'
23+
user: '{{ requiredEnv "GITHUB_ACTOR" }}'
2524
owner: elastic
2625
repository: apm-server
2726
token: '{{ requiredEnv "GITHUB_TOKEN" }}'
28-
username: '{{ requiredEnv "GIT_USER" }}'
2927
branch: '{{ requiredEnv "BRANCH" }}'
28+
commitusingapi: true
3029

3130
sources:
3231
latestVersion:

.ci/bump-golang.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,12 @@ scms:
2323
default:
2424
kind: github
2525
spec:
26-
user: '{{ requiredEnv "GIT_USER" }}'
27-
email: '{{ requiredEnv "GIT_EMAIL" }}'
26+
user: '{{ requiredEnv "GITHUB_ACTOR" }}'
2827
owner: elastic
2928
repository: apm-server
3029
token: '{{ requiredEnv "GITHUB_TOKEN" }}'
31-
username: '{{ requiredEnv "GIT_USER" }}'
3230
branch: main
31+
commitusingapi: true
3332

3433
sources:
3534
minor:

.ci/update-beats.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ scms:
66
default:
77
kind: github
88
spec:
9-
user: '{{ requiredEnv "GIT_USER" }}'
10-
email: '{{ requiredEnv "GIT_EMAIL" }}'
9+
user: '{{ requiredEnv "GITHUB_ACTOR" }}'
1110
owner: elastic
1211
repository: apm-server
1312
token: '{{ requiredEnv "GITHUB_TOKEN" }}'
14-
username: '{{ requiredEnv "GIT_USER" }}'
1513
branch: '{{ requiredEnv "BRANCH_NAME" }}'
14+
commitusingapi: true
1615

1716
actions:
1817
default:

.github/ISSUE_TEMPLATE/test-plan.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,14 @@ Testing can be started when the first build candidate (BC) is available in the C
1515
Thanks to https://github.com/elastic/apm-server/issues/8303 further smoke tests are run automatically on ESS now.
1616
**Consider extending the smoke tests to include more test cases which we'd like to cover**
1717

18-
## Go agent
18+
## go-docappender library
1919

20-
<!-- Add any issues / PRs which were worked on during the milestone release https://github.com/elastic/apm-agent-go/pulls-->
20+
<!-- Add any issues / PRs which were worked on during the milestone release https://github.com/elastic/go-docappender/pulls-->
2121

22-
## Lambda extension
22+
## apm-data library
2323

24-
<!-- Add any issues / PRs which were worked on during the milestone release https://github.com/elastic/apm-aws-lambda/pulls-->
24+
<!-- Add any issues / PRs which were worked on during the milestone release https://github.com/elastic/apm-data/pulls-->
2525

26-
## APM Kubernetes Attacher
27-
28-
<!-- Add any issues / PRs which were worked on during the milestone release -->
2926

3027
## Test cases from the GitHub board
3128

@@ -37,4 +34,4 @@ Add yourself as _assignee_ on the PR before you start testing.
3734

3835
## Regressions
3936

40-
Link any regressions to this issue.
37+
<!-- Link any regressions to this issue. -->

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
with:
5454
go-version-file: 'go.mod'
5555

56-
- uses: rlespinasse/github-slug-action@55f5982579285ce3138ca118a20247ee994619ee
56+
- uses: rlespinasse/github-slug-action@797d68864753cbceedc271349d402da4590e6302
5757

5858
- name: Set up env
5959
run: |

.github/workflows/bump-elastic-stack.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,6 @@ jobs:
3636
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }}
3737
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }}
3838
pipeline: ./.ci/bump-elastic-stack-snapshot.yml
39+
command: '--experimental apply'
3940
env:
4041
BRANCH: ${{ matrix.branch }}

.github/workflows/bump-golang.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ jobs:
2121
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }}
2222
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }}
2323
pipeline: ./.ci/bump-golang.yml
24+
command: '--experimental apply'

.github/workflows/run-minor-release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,16 @@ jobs:
7171
- name: Configure git user
7272
uses: elastic/apm-pipeline-library/.github/actions/setup-git@current
7373
with:
74-
username: ${{ env.GIT_USER }}
75-
email: ${{ env.GIT_EMAIL }}
7674
token: ${{ env.GH_TOKEN }}
7775

76+
- name: Import GPG key
77+
uses: crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
78+
with:
79+
gpg_private_key: ${{ secrets.APM_SERVER_RELEASE_GPG_PRIVATE_KEY }}
80+
passphrase: ${{ secrets.APM_SERVER_RELEASE_PASSPHRASE }}
81+
git_user_signingkey: true
82+
git_commit_gpgsign: true
83+
7884
- run: make minor-release
7985

8086
- uses: elastic/apm-pipeline-library/.github/actions/slack-message@current

.github/workflows/run-patch-release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,16 @@ jobs:
6262
- name: Configure git user
6363
uses: elastic/apm-pipeline-library/.github/actions/setup-git@current
6464
with:
65-
username: ${{ env.GIT_USER }}
66-
email: ${{ env.GIT_EMAIL }}
6765
token: ${{ env.GH_TOKEN }}
6866

67+
- name: Import GPG key
68+
uses: crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
69+
with:
70+
gpg_private_key: ${{ secrets.APM_SERVER_RELEASE_GPG_PRIVATE_KEY }}
71+
passphrase: ${{ secrets.APM_SERVER_RELEASE_PASSPHRASE }}
72+
git_user_signingkey: true
73+
git_commit_gpgsign: true
74+
6975
- run: make patch-release
7076

7177
- uses: elastic/apm-pipeline-library/.github/actions/slack-message@current

.github/workflows/update-beats.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }}
4040
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }}
4141
pipeline: ./.ci/update-beats.yml
42+
command: '--experimental apply'
4243
- if: failure()
4344
uses: elastic/apm-pipeline-library/.github/actions/notify-build-status@current
4445
with:

0 commit comments

Comments
 (0)