You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
d9fa13fd26
Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
763 B
YAML
29 lines
763 B
YAML
name: Dependabot-Tidier
|
|
on:
|
|
pull_request:
|
|
types: [ labeled ]
|
|
|
|
jobs:
|
|
mod_tidier:
|
|
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '^1.21.1'
|
|
- uses: evantorrie/mott-the-tidier@v1-beta
|
|
id: modtidy
|
|
with:
|
|
gomods: '**/go.mod'
|
|
gomodsum_only: true
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
id: autocommit
|
|
with:
|
|
commit_message: Auto-fix go.sum changes in dependent modules
|
|
- name: changes
|
|
run: |
|
|
echo "Changes detected: ${{ steps.autocommit.outputs.changes_detected }}"
|