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 }}