From d654b05a6a938d9ed71624866ffa9932cfb561bb Mon Sep 17 00:00:00 2001 From: MH_ProDev <63018646+MHProDev@users.noreply.github.com> Date: Tue, 1 Mar 2022 04:24:50 +0330 Subject: [PATCH] Delete clones.yml --- .github/workflows/clones.yml | 39 ------------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/clones.yml diff --git a/.github/workflows/clones.yml b/.github/workflows/clones.yml deleted file mode 100644 index 7511cc1..0000000 --- a/.github/workflows/clones.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: GitHub Clone Count for 14 days at every 8 hours - -# Controls when the action will run. -on: - schedule: - - cron: "0 */8 * * *" - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - name: Parse clone count using REST API - run: | - curl --user "${{ github.actor }}:${{ secrets.SECRET_TOKEN }}" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/${{ github.repository }}/traffic/clones \ - > .github/clone.json - - - name: Add to git repo - run: | - git add . - git config --global user.name "GitHub Action" - git config --global user.email "action@github.com" - git commit -m "Automated clone.json update" - - - name: Push - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }}