Skip to content

Commit

Permalink
Avoid usage of yaml-anchors and -aliases.
Browse files Browse the repository at this point in the history
  • Loading branch information
joergdw committed Sep 20, 2023
1 parent 9ed18ce commit 69da8e7
Showing 1 changed file with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
name: "renovate-/ospo-bot: go mod tidy and make package-specs"
on:
pull_request: &on-filter
pull_request:
branches:
- "renovate/**"
- "dependabot/**"
paths:
- ".github/workflows/dependency-update-go-mod-tidy.yaml"
- "src/**/go.mod"
- "src/**/go.sum"
push:
# TODO: As soon as Github solves issue <https://github.com/actions/runner/issues/1182>
# and this event-configuration remains identical to the one for `pull_request`,
# anchors and aliases may be used, see the official
# [yaml-documentation](<https://yaml.org/spec/1.2.2/#alias-nodes>).
branches:
- "renovate/**"
- "dependabot/**"
paths:
- ".github/workflows/dependency-update-go-mod-tidy.yaml"
- "src/**/go.mod"
- "src/**/go.sum"
push: *on-filter
workflow_dispatch: {}
jobs:
go-mod-tidy:
Expand Down

0 comments on commit 69da8e7

Please sign in to comment.