Skip to content

Commit 93912c2

Browse files
Bumping gh actions
1 parent 1fb7874 commit 93912c2

File tree

2 files changed

+41
-7
lines changed

2 files changed

+41
-7
lines changed

.github/workflows/post-release-workflow.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,22 @@ name: Post Release Tasks
33
on:
44
workflow_dispatch:
55
inputs:
6-
github_ref_name:
7-
description: "Current release tag in this train (e.g., v1.15.3)"
8-
required: true
96
previous_ref_name:
10-
description: "Previous release tag in this train (e.g., v1.14.8)"
7+
description: "Previous release version (e.g., v1.14.8)"
118
required: false
129

1310
jobs:
1411
post_release:
1512
runs-on: ubuntu-latest
1613

1714
steps:
18-
- uses: actions/checkout@v4
15+
- name: Checkout code
16+
uses: actions/checkout@v4
1917

2018
- name: Run Post Release Tasks
21-
uses: marcingrzejszczak/micrometer-[email protected]
19+
uses: micrometer-metrics/micrometer-github-workflows@main
2220
with:
2321
gh_token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
24-
github_ref_name: ${{ github.event.inputs.github_ref_name }}
2522
previous_ref_name: ${{ github.event.inputs.previous_ref_name }}
2623
spring_release_gchat_webhook_url: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}
2724
bluesky_handle: ${{ secrets.BLUESKY_HANDLE }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release Train (for a single project)
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
context_propagation_versions:
7+
description: "[TRAIN] Comma separated list of context propagation versions (e.g. 1.0.0,1.1.0,1.1.0)"
8+
required: false
9+
default: ""
10+
micrometer_versions:
11+
description: "[TRAIN] Comma separated list of micrometer versions (e.g. 1.13.2,1.14.8,1.15.9)"
12+
required: false
13+
default: ""
14+
tracing_versions:
15+
description: "[TRAIN] Comma separated list of micrometer tracing versions (e.g. 1.5.0,1.6.0,1.7.0)"
16+
required: false
17+
default: ""
18+
19+
jobs:
20+
release:
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- name: Checkout code
25+
uses: actions/checkout@v4
26+
27+
- name: Run Single Project Release Train Tasks
28+
uses: micrometer-metrics/micrometer-github-workflows@main
29+
with:
30+
gh_token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
31+
spring_release_gchat_webhook_url: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}
32+
bluesky_handle: ${{ secrets.BLUESKY_HANDLE }}
33+
bluesky_password: ${{ secrets.BLUESKY_PASSWORD }}
34+
circle_ci_token: ${{ secrets.CIRCLE_CI_TOKEN }}
35+
context_propagation_versions: ${{ github.event.inputs.context_propagation_versions }}
36+
micrometer_versions: ${{ github.event.inputs.micrometer_versions }}
37+
tracing_versions: ${{ github.event.inputs.micrometer_versions }}

0 commit comments

Comments
 (0)