diff --git a/.github/workflows/traffic2badge.yml b/.github/workflows/traffic2badge.yml deleted file mode 100644 index 4e82d9ff..00000000 --- a/.github/workflows/traffic2badge.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: traffic2badge -on: - push: - branches: - - master - schedule: - - cron: '1 0 * * *' #every day at 00:01:00 UTC - -jobs: - run: - if: github.repository_owner == 'yashaka' - name: Make GitHub Traffic to Badge - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v3 - - - name: Get Commit Message - id: message - uses: actions/github-script@v6 - env: - FULL_COMMIT_MESSAGE: '${{ github.event.head_commit.message }}' - with: - result-encoding: string - script: | - var message = `${process.env.FULL_COMMIT_MESSAGE}`; - core.info(message); - if (message != '') return message; - var time = new Date(Date.now()).toISOString(); - core.info(time); - return `Get traffic data at ${time}`; - - - name: Set Traffic - id: traffic - uses: yi-Xu-0100/traffic-to-badge@v1.4.0 - with: - my_token: ${{ secrets.TRAFFIC_TOKEN }} - #(default) static_list: ${{ github.repository }} - #(default) traffic_branch: traffic - #(default) views_color: brightgreen - #(default) clones_color: brightgreen - #(default) views_week_color: brightgreen - #(default) clones_week_color: brightgreen - #(default) logo: github - #(default) year: - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_branch: ${{ steps.traffic.outputs.traffic_branch }} - publish_dir: ${{ steps.traffic.outputs.traffic_path }} - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' - full_commit_message: ${{ steps.message.outputs.result }} - - - name: Show Traffic Data - run: | - echo ${{ steps.traffic.outputs.traffic_branch }} - echo ${{ steps.traffic.outputs.traffic_path }} - cd ${{ steps.traffic.outputs.traffic_path }} - ls -a