rm unused actions

imgbot
CrimsonTome 2022-05-15 16:31:01 +01:00 committed by Matt Clark
parent c9d76ffa3c
commit 1677abb982
No known key found for this signature in database
GPG Key ID: 8347886807482CDA
2 changed files with 0 additions and 61 deletions

View File

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

View File

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