From 68be3b9a3dafed857470155097ca35154f149e1b Mon Sep 17 00:00:00 2001 From: Jin Hai Date: Tue, 30 Dec 2025 19:06:27 +0800 Subject: [PATCH] Update release workflow (#12335) ### What problem does this PR solve? As title ### Type of change - [x] Refactoring Signed-off-by: Jin Hai --- .github/workflows/release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0301189e0..e18d1e2e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,5 @@ name: release -permissions: - contents: write - on: schedule: - cron: '0 13 * * *' # This schedule runs every 13:00:00Z(21:00:00+08:00) @@ -13,6 +10,12 @@ on: tags: - "v*.*.*" # normal release +permissions: + contents: write + actions: read + checks: read + statuses: read + # https://docs.github.com/en/actions/using-jobs/using-concurrency concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}