From 28f5511804503800a19ad6edbda36341248e2e1a Mon Sep 17 00:00:00 2001 From: ONLY-yours <1349021570@qq.com> Date: Wed, 27 Dec 2023 11:05:41 +0800 Subject: [PATCH] :rocket: fix: clear useless contributor-help.yml --- .github/workflows/contributor-help.yml | 28 -------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/contributor-help.yml diff --git a/.github/workflows/contributor-help.yml b/.github/workflows/contributor-help.yml deleted file mode 100644 index a5d7f119..00000000 --- a/.github/workflows/contributor-help.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Contributor Helper - -on: - schedule: - - cron: '0 0 * * *' - -jobs: - contributor: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - - uses: actions-cool/contributor-helper@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - style: 'simple' - update-files: 'README.md' - update-places: '/' - - - name: Commit and push if changed - run: |- - git diff - git config --global user.email "actions@github.com" - git config --global user.name "github-actions" - git pull - git add -A - git commit -m "🤖 docs: Auto update contributors" || exit 0 - git push