Skip to content
Merged
Changes from 4 commits
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
7 changes: 4 additions & 3 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@
name: "Build Docker Image"

on:
schedule:
- cron: '40 01 * * *'
push:
branches:
- release-*
release:
types:
- released
tags:
- 'v[2-9]+.[0-9]+.[0-9]+'
Copy link

Copilot AI Sep 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The regex pattern v[2-9]+.[0-9]+.[0-9]+ is incorrect for semantic versioning. The dots should be escaped as \. and the quantifier should be * not + for the major version to allow single digits. Use 'v[2-9]\.[0-9]+\.[0-9]+' instead.

Copilot uses AI. Check for mistakes.

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
Loading