forked from open-telemetry/opentelemetry-go-instrumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 915 Bytes
/
offsets.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
name: Automatic Offset Generation
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
updateOffsets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version: "~1.23.1"
check-latest: true
cache-dependency-path: "**/go.sum"
- name: Update offsets
run: make offsets
- name: Create pull request
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7
with:
commit-message: Update generated offsets
branch: automated/generated-offsets
delete-branch: true
title: '[auto] Update generated offsets'
body: 'This is an automated PR to update the generated Go field offsets.'