From a7de65aab81bf34cc2ff6991cd236fedfebddd12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=B5=E3=81=81?= Date: Tue, 28 Nov 2023 09:24:57 +0900 Subject: [PATCH] add workflow_dispatch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ふぁ --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 974b127693..6ca042991f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,8 @@ name: Generator on: schedule: - - cron: '0 21 * * *' + - cron: "0 21 * * *" + workflow_dispatch: jobs: generator: @@ -14,8 +15,8 @@ jobs: - name: Setup Python uses: actions/setup-python@v2 with: - python-version: '3.9' - architecture: 'x64' + python-version: "3.9" + architecture: "x64" - name: Get Python version run: python -V