From 9f3f6a14493c76974365fe112878ab6e7ab31a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= Date: Tue, 25 Feb 2025 11:00:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20GitHub=20Actions=20?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=EF=BC=8C=E6=B7=BB=E5=8A=A0=E6=89=8B?= =?UTF-8?q?=E5=8A=A8=E8=A7=A6=E5=8F=91=E6=97=B6=E7=9A=84=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=BB=A5=E8=BF=90=E8=A1=8C=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/services-test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/services-test.yaml b/.github/workflows/services-test.yaml index 9098f80..2c0eebb 100644 --- a/.github/workflows/services-test.yaml +++ b/.github/workflows/services-test.yaml @@ -1,6 +1,11 @@ on: push: workflow_dispatch: + inputs: + test: + description: 'Run tests' + required: true + default: 'true' jobs: services-test: runs-on: ubuntu-latest @@ -12,4 +17,5 @@ jobs: steps: - name: Test with Redis run: | + echo ${{ github.event.inputs.test }} docker ps --format "table {{.Names}}" \ No newline at end of file