Metrics #3070
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference | |
name: Metrics | |
on: | |
# Schedule updates (At 01:30 on Thursday.) | |
schedule: [{cron: "30 1 * * 4"}] | |
# Lines below let you run workflow manually and on each commit | |
workflow_dispatch: | |
push: {branches: ["master", "main"]} | |
jobs: | |
github-metrics: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: 🦑 Achievements | |
if: ${{ success() || failure() }} | |
uses: lowlighter/metrics@latest | |
with: | |
filename: images/achievements.svg | |
token: ${{ secrets.METRICS_TOKEN }} | |
user: maling-it | |
base: "" | |
output_action: none | |
output_condition: data-changed | |
plugin_achievements: yes | |
plugin_achievements_display: compact | |
- name: 🦑 General | |
if: ${{ success() || failure() }} | |
uses: lowlighter/metrics@latest | |
with: | |
filename: images/general.svg | |
token: ${{ secrets.METRICS_TOKEN }} | |
user: maling-it | |
base: header, activity, community, repositories, metadata | |
base_indepth: yes | |
config_timezone: Asia/Jakarta | |
output_action: none | |
output_condition: data-changed | |
plugin_introduction: yes | |
plugin_introduction_title: yes | |
plugin_followup: yes | |
plugin_followup_archived: yes | |
plugin_followup_sections: repositories | |
- name: Push to github | |
run: | | |
set +e | |
git checkout metrics-renders | |
git config user.name "Mandakara Sadewa" | |
git config user.email "[email protected]" | |
sudo mv -f /metrics_renders/images/* ./images | |
git add --all | |
git commit -sm "chore: push metrics" | |
git push | |