forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (97 loc) · 4.24 KB
/
auto-update-jmx-metrics-component.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Auto-update JMX metrics component
on:
schedule:
# Daily at 01:30 (UTC)
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
check-versions:
runs-on: ubuntu-latest
outputs:
latest-version: ${{ steps.check-versions.outputs.latest-version }}
already-added: ${{ steps.check-versions.outputs.already-added }}
already-opened: ${{ steps.check-versions.outputs.already-opened }}
steps:
- uses: actions/checkout@v4
- id: check-versions
name: Check versions
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
latest_version=$(gh release view \
--repo open-telemetry/opentelemetry-java-contrib \
--json tagName \
--jq .tagName \
| sed 's/^v//')
# jmx metric gatherer is currently alpha
latest_version=$latest_version-alpha
if grep -Pzo "version: \"$latest_version\",\s*jar:\s*\"JMX metrics gatherer\"" receiver/jmxreceiver/supported_jars.go; then
already_added=true
fi
matches=$(gh pr list \
--author opentelemetrybot \
--state open \
--search "in:title \"Add JMX metrics gatherer version $latest_version\"")
if [ ! -z "$matches" ]
then
already_opened=true
fi
echo "latest-version=$latest_version" >> $GITHUB_OUTPUT
echo "already-added=$already_added" >> $GITHUB_OUTPUT
echo "already-opened=$already_opened" >> $GITHUB_OUTPUT
update-jmx-metrics-component:
runs-on: ubuntu-latest
if: |
needs.check-versions.outputs.already-added != 'true' &&
needs.check-versions.outputs.already-opened != 'true'
needs:
- check-versions
steps:
- uses: actions/checkout@v4
- name: Update version
env:
VERSION: ${{ needs.check-versions.outputs.latest-version }}
run: |
if [[ ! $VERSION =~ -alpha$ ]]; then
echo currently expecting jmx metrics version to end with "-alpha"
exit 1
fi
version=${VERSION//-alpha/}
hash=$(curl -L https://github.com/open-telemetry/opentelemetry-java-contrib/releases/download/v$version/opentelemetry-jmx-metrics.jar \
| sha256sum \
| cut -d ' ' -f 1)
# NOTE there are intentional tab characters in the line below
sed -i "/^var jmxMetricsGathererVersions/a \ \"$hash\": {\n version: \"$VERSION\",\n jar: \"JMX metrics gatherer\",\n }," receiver/jmxreceiver/supported_jars.go
git diff
- name: Use CLA approved github bot
run: |
git config user.name opentelemetrybot
git config user.email [email protected]
- name: Create pull request against main
env:
VERSION: ${{ needs.check-versions.outputs.latest-version }}
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
GH_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
run: |
message="Add JMX metrics gatherer version $VERSION"
body="Add JMX metrics gatherer version \`$VERSION\`.
cc @open-telemetry/java-contrib-approvers
"
branch="opentelemetrybot/add-jmx-metrics-gatherer-${VERSION}"
git checkout -b $branch
git commit -a -m "$message"
git push --set-upstream origin $branch
url=$(gh pr create --title "$message" \
--body "$body" \
--base main)
pull_request_number=${url//*\//}
# see the template for change log entry file at blob/main/.chloggen/TEMPLATE.yaml
cat > .chloggen/add-jmx-metrics-gatherer-$VERSION.yaml << EOF
change_type: enhancement
component: jmxreceiver
note: Add the JMX metrics gatherer version $VERSION to the supported jars hash list
issues: [ $pull_request_number ]
EOF
git add .chloggen/add-jmx-metrics-gatherer-$VERSION.yaml
git commit -m "Add change log entry"
git push