yi-Xu-0100 / traffic2badge

Traffic to badge action usage template. Use repositories Insights/traffic data to generate badges that include views and clones.

Home Page:https://github.yixuju.cn/traffic2badge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚡️ traffic2badge

sync2gitee(list) traffic2badge GitHub last commit LICENSE

GitHub views GitHub views per week GitHub clones GitHub clones per week

total views total views per week total clones total clones per week

Usage template repository of traffic-to-badge GitHub Action, you can use repositories Insights/traffic data to generate badges that include views and clones.

English | 简体中文

🚀 Configuration

There are only one input must be set up and four inputs can be set to default without config. The default setting only supports running repository, and if repositories support is required, please refer to Usage for static_list.

input description required default
my_token Personal access token to obtain the secret repository traffic data
static_list List of repositories which want to be got github.repository
traffic_branch Branch used to back up traffic data traffic
views_color Color value for the views badge background brightgreen
clones_color Color value for the clones badge background brightgreen
views_week_color Color value for the views in past week badge background brightgreen
clones_week_color Color value for the clones in past week badge background brightgreen
total_views_color Color value for the views badge background of all repositories brightgreen
total_clones_color Color value for the clones badge background of all repositories brightgreen
total_views_week_color Color value for the views in past week badge background of all repositories brightgreen
total_clones_week_color Color value for the clones in past week badge background of all repositories brightgreen
logo Logo or simple-icon to the left of the label github
year Year for license startup

📝 Usage for static_list

repo-list-generator: Default output repoList do not include private and fork repositories.

name: traffic2badge
on:
  push:
  schedule:
    - cron: '1 0 * * *'

jobs:
  run:
    name: Make GitHub Traffic to Badge
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2.3.4

      - name: Get Repo List
        id: repo
        uses: yi-Xu-0100/repo-list-generator@v0.4.1

      - name: Get Commit Message
        id: message
        uses: actions/github-script@v3.1.0
        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 }}
          static_list: '${{ steps.repo.outputs.repoList }}'
          #(default) traffic_branch: traffic
          #(default) views_color: brightgreen
          #(default) clones_color: brightgreen
          #(default) views_week_color: brightgreen
          #(default) clones_week_color: brightgreen
          #(default) total_views_color: brightgreen
          #(default) total_clones_color: brightgreen
          #(default) total_views_week_color: brightgreen
          #(default) total_clones_week_color: brightgreen
          #(default) logo: github
          year: 2021

      - name: Deploy
        uses: peaceiris/actions-gh-pages@v3.7.3
        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: |
          cd ${{ steps.traffic.outputs.traffic_path }}
          ls -a

Explanation:

  1. The repo-list-generator generates repoList for static_list usage.
  2. The github-script generates message for commit.
  3. The actions-gh-pages publish traffic data to traffic_branch. The options follow this guide.
  4. The TRAFFIC_TOKEN needs to be generated, the guild in Generate my_token .
  5. The GITHUB_TOKEN does not need to be generated,only reference it in your workflow file,and the guide in Using the GITHUB_TOKEN in a workflow .

🎉 Thanks

📄 LICENSE

About

Traffic to badge action usage template. Use repositories Insights/traffic data to generate badges that include views and clones.

https://github.yixuju.cn/traffic2badge

License:MIT License