diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b55fbe36..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,41 +0,0 @@ -# Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference -name: Metrics -on: - # Schedule updates (each hour) - schedule: [{cron: "0 * * * *"}] - # Lines below let you run workflow manually and on each commit - push: {branches: ["master", "main"]} - workflow_dispatch: -jobs: - github-metrics: - runs-on: ubuntu-latest - steps: - - uses: lowlighter/metrics@latest - with: - # Your GitHub token - token: ${{ secrets.METRICS_TOKEN }} - # GITHUB_TOKEN is a special auto-generated token restricted to current repository, which is used to push files in it - committer_token: ${{ secrets.GITHUB_TOKEN }} - - # Options - user: CrimsonTome - template: classic - base: header, activity, community, repositories, metadata - config_timezone: America/New_York - plugin_activity: yes - plugin_activity_days: 14 - plugin_activity_filter: all - plugin_activity_limit: 5 - plugin_isocalendar: yes - plugin_languages: yes - plugin_languages_colors: github - plugin_languages_threshold: 0% - plugin_lines: yes # Limit to 4 entries - plugin_projects_descriptions: yes # Display projects descriptions - plugin_followup: yes - plugin_followup_sections: repositories, user # - plugin_habits: yes - plugin_habits_from: 200 # Use 200 events to compute habits - plugin_habits_days: 30 # Keep only events from last 14 days - plugin_habits_facts: yes # Display facts section - plugin_habits_charts: yes # Display charts section diff --git a/.github/workflows/recent-contribs-workflow.yml b/.github/workflows/recent-contribs-workflow.yml deleted file mode 100644 index fa280a72..00000000 --- a/.github/workflows/recent-contribs-workflow.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Update README - -on: - schedule: - - cron: "*/5 * * * *" # Runs every 5 minutes. - -jobs: - build: - runs-on: ubuntu-latest - name: Update this repo's README with recent activity - - steps: - - uses: actions/checkout@v2 - - uses: jamesgeorge007/github-activity-readme@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - COMMIT_MSG: "Updated README with recent activity" - MAX_LINES: 10 -