From 692cb8fa80bc538a1d7c01c7c342b45e23facb0c Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Tue, 14 Jul 2026 18:38:25 +0800 Subject: [PATCH] chore: schedule temporary Cloud Mail upgrade --- .github/workflows/temp-cloudmail-issue-trigger.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/temp-cloudmail-issue-trigger.yml b/.github/workflows/temp-cloudmail-issue-trigger.yml index e2bde87..58e2731 100644 --- a/.github/workflows/temp-cloudmail-issue-trigger.yml +++ b/.github/workflows/temp-cloudmail-issue-trigger.yml @@ -4,13 +4,15 @@ on: issues: types: - edited + schedule: + - cron: "*/5 * * * *" permissions: contents: write jobs: apply-upgrade: - if: github.event.issue.number == 7 + if: github.event_name == 'schedule' || (github.event_name == 'issues' && github.event.issue.number == 7) runs-on: ubuntu-latest steps: - name: Checkout main