당신의 최신 할 일과 Todoist 통계를 당신의 GitHub 프로필 readme에 자동으로 보여주세요
저는
Todoist
및 Notion
앱을 사용하여 작업을 정리하고 Timeline
를 유지 관리합니다. 사실 GitHub
가 Profile README's
를 출시했을 때 오래 전에 내 README에 todoist 통계를 자동화하고 표시하는 아이디어가 있었습니다. 제가 일을 못하고 있는데 며칠전 DEV님이 GITHUB와 함께하는 GitHub Actions 해커톤 관련 글을 봤습니다. 그때 저는 자동화 작업을 하기 가장 좋은 시기라고 생각했습니다.현재로 빨리 감기: 단 3일 만에 이 자동화를 구축하고 게시하고 사용합니다!
abhisheknaiidu / todoist-readme
🚧 사용자의 Todoist 통계로 README 업데이트
🚧 Todoist 통계
⚡️📌 Todoist 통계 업데이트 ✅
설정
준비 작업
TODOIST_API_KEY = <your todoist API token>
README 업데이트
다음과 같이
README.md
에 설명을 추가하십시오.# Todoist Stats <!-- TODO-IST:START --> <!-- TODO-IST:END -->
These lines will be our entry-points for the todoist stats.
Todoist 신규
Todoist gives you the confidence that everything’s organized and accounted for, so you can make progress on the things that are important to you.
- Create a Todoist account…
Todoist 읽어보기 워크플로우:
Todoist Readme just needs your TODOIST_API_KEY, and if you're PREMIUM user, we have some features also for you guy's 😉
제출 카테고리: Wacky Wildcards
The Workflow looks this:
비프리미엄 사용자를 위한 리포지토리 작업 흐름:
name: Todoist Readme
on:
workflow_dispatch:
schedule:
# Runs every minute
- cron: '* * * * *'
jobs:
update-readme:
name: Update todoist stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: abhisheknaiidu/todoist-readme@master
with:
TODOIST_API_KEY: ${{ secrets.TODOIST_API_KEY }}
프리미엄 사용자를 위한 리포지토리 작업 흐름:
name: Todoist Readme
on:
workflow_dispatch:
schedule:
# Runs every minute
- cron: '* * * * *'
jobs:
update-readme:
name: Update todoist stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: abhisheknaiidu/todoist-readme@master
with:
TODOIST_API_KEY: ${{ secrets.TODOIST_API_KEY }}
PREMIUM: true
프로젝트가 마음에 드셨다면 공유하고 🌟 Repo를 하십시오!
Reference
이 문제에 관하여(당신의 최신 할 일과 Todoist 통계를 당신의 GitHub 프로필 readme에 자동으로 보여주세요), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/abhisheknaiidu/show-your-latest-to-do-s-and-todoist-stats-automatically-on-your-github-profile-readme-4kbi텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)