Open liumy-lay opened 4 months ago
Same error with SHOW_LOC_CHART = False. This is the configuration I am using:
on:
workflow_dispatch:
schedule:
# Runs at 00:00AM UTC
- cron: '30 18 * * *'
jobs:
update-readme: # https://wakatime.com/projects
name: Update Readme with Metrics
runs-on: ubuntu-latest
steps:
- uses: anmol098/waka-readme-stats@master #PLEASE USE MASTER BRANCH
with:
WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} # https://wakatime.com/api-key
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SHOW_PROJECTS: "False"
SHOW_LINES_OF_CODE: "True"
SHOW_LOC_CHART: "False"
LOCALE: "en"
Describe the bug The version I Used:
anmol098/waka-readme-stats@master
If the Flag
SHOW_LOC_CHART
is not filled in in YML, the default is"True"
.At the beginning of Github Action Faild, I couldn't find something wrong,
but when I added
show_loc_chart: "Flase"
, GitHub Action was successful.Here is the detailed bug description:
Expected behavior
For new users of Wakatime,to avoid
ACTION FAILED
the flagSHOW_LOC_CHART
should set toFalse
by default in the original code.