Skip to content

Fix config loading for tracing #12

Fix config loading for tracing

Fix config loading for tracing #12

Workflow file for this run

name: Changelog
on:
push:
tags: ["v*"]
jobs:
createPullRequest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.18.x
- name: Update Changelog
run: |
make changelog
make spell-check-fix
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: update changelog"
committer: GitHub <noreply@github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: false
branch: "maint/changelog"
title: "${{ github.ref }} Changelog Update"
base: main
body: |
Update changelog
- Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
labels: |
changelog
automated pr
- name: Check output
run: |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"