From 0b27e2a8ee1cbd5bea587405b7a73c68efb00246 Mon Sep 17 00:00:00 2001 From: pppscn <35696959@qq.com> Date: Sat, 18 Jun 2022 21:47:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86=EF=BC=9A=E5=88=A0=E9=99=A4Gi?= =?UTF-8?q?tHub=20Actions=E6=97=A7=E7=9A=84=E5=B7=A5=E4=BD=9C=E6=B5=81?= =?UTF-8?q?=EF=BC=88=E9=81=BF=E5=85=8D=E7=A9=BA=E9=97=B4=E7=88=86=E6=BB=A1?= =?UTF-8?q?=E9=99=90=E9=80=9F=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Delete_Old_Workflow_Runs.yml | 6 ++++++ .github/workflows/issue_check.yml | 18 ------------------ 2 files changed, 6 insertions(+), 18 deletions(-) delete mode 100644 .github/workflows/issue_check.yml diff --git a/.github/workflows/Delete_Old_Workflow_Runs.yml b/.github/workflows/Delete_Old_Workflow_Runs.yml index 88755434..ae74fbe2 100644 --- a/.github/workflows/Delete_Old_Workflow_Runs.yml +++ b/.github/workflows/Delete_Old_Workflow_Runs.yml @@ -2,6 +2,12 @@ name: Delete old workflow runs on: schedule: - cron: '0 0 * * *' + workflow_dispatch: + inputs: + root_sol: + description: "Workflow Title" + required: true + default: "Delete old workflow runs" jobs: del_runs: diff --git a/.github/workflows/issue_check.yml b/.github/workflows/issue_check.yml deleted file mode 100644 index e36da2f4..00000000 --- a/.github/workflows/issue_check.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: No Free usage issue checker # Action名字。可以自定义 - -on: - issues: - types: [ opened, reopened ] # 在issue打开和重新打开时调用 - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Check issue actor # 步骤名字。可以自定义。 - uses: fluttercandies/no-free-usage-action@v1.0.1 - with: - token: ${{ secrets.GITHUB_TOKEN }} # 由GitHub提供的临时Token,必须在此处进行传递,且必须为这个值。 - forked: '--no-forked' - words: To support our project, please file the issue after you starred the repo. Thanks! 🙂