Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/docker-dependency-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ env:
REPORT_PATH: docker-dependency-report.json
UPDATE_BRANCH: docker-dependency-updates
PR_TITLE: "chore(deps): docker dependency upgrade"
PR_TEAM_REVIEWER: worker
PR_LABELS: |-
docker
dependencies
PR_AUTO_MERGE: "true"
PR_MERGE_METHOD: squash
COMMIT_MESSAGE: "chore(deps): update Docker dependency pins"
Expand Down Expand Up @@ -382,6 +386,8 @@ jobs:
body-path: docker-dependency-pr-body.md
branch: ${{ needs.config.outputs.update_branch }}
add-paths: ${{ needs.config.outputs.dockerfile }}
labels: ${{ env.PR_LABELS }}
team-reviewers: ${{ env.PR_TEAM_REVIEWER }}
Comment thread
fqjony marked this conversation as resolved.
draft: false
delete-branch: true

Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/docker-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
name: Build/Release

"on":
pull_request:
branches:
- latest
paths:
- ".github/workflows/docker-ops.yml"
Comment thread
fqjony marked this conversation as resolved.
Outdated
- ".dockerignore"
- "Dockerfile"
- "bin/**"
- "lib/**"
- "src/**"
- "etc/**"
- "test/**"
- "Makefile"
- "Makefile.variables"
- "ci/**"
push:
branches:
- "**"
Expand Down
Loading