From c7ca076712368cb8781d20891921b812fc710837 Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Tue, 14 Jul 2026 21:38:05 +0800 Subject: [PATCH] chore: allow issue trigger for audit fixes --- .github/workflows/temp-audit-fixes.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/temp-audit-fixes.yml b/.github/workflows/temp-audit-fixes.yml index 18a164f..4a0e66f 100644 --- a/.github/workflows/temp-audit-fixes.yml +++ b/.github/workflows/temp-audit-fixes.yml @@ -1,18 +1,18 @@ name: Temporary audit fixes on: + workflow_dispatch: push: branches: [main] - workflow_dispatch: issues: - types: [edited] + types: [edited, opened, reopened] permissions: contents: write jobs: apply: - if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.issue.number == 7 + if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.issue.number == 7 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4