keep sync #1354
This file contains hidden or 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
| name: keep sync | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| sync: | |
| name: Sync | |
| runs-on: ubuntu-latest | |
| env: | |
| NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }} | |
| NOTION_PAGE: ${{ secrets.NOTION_PAGE }} | |
| KEEP_MOBILE: ${{ secrets.KEEP_MOBILE }} | |
| KEEP_PASSWORD: ${{ secrets.KEEP_PASSWORD }} | |
| COUNTRY_CODE: ${{ secrets.COUNTRY_CODE }} | |
| YEAR: ${{ vars.YEAR }} | |
| REF: ${{ github.ref }} | |
| REPOSITORY: ${{ github.repository }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: keep sync | |
| run: | | |
| keep2notion | |
| - name: Set default year if not provided | |
| run: echo "YEAR=$(date +"%Y")" >> $GITHUB_ENV | |
| if: env.YEAR == '' | |
| - name: notion heatmap | |
| run: | | |
| github_heatmap notion --notion_token "${{secrets.NOTION_TOKEN}}" --database_id "${{ env.DATABASE_ID }}" --date_prop_name "日期" --value_prop_name "分钟" --unit "分钟" --year $YEAR --me "${{secrets.NAME}}" --without-type-name --background-color=${{ vars.background_color||'#FFFFFF'}} --track-color=${{ vars.track_color||'#ACE7AE'}} --special-color1=${{ vars.special_color||'#69C16E'}} --special-color2=${{ vars.special_color2||'#549F57'}} --dom-color=${{ vars.dom_color||'#EBEDF0'}} --text-color=${{ vars.text_color||'#000000'}} | |
| - name: Rename notion.svg to a random name | |
| run: | | |
| cd OUT_FOLDER | |
| find . -type f ! -name "notion.svg" -exec rm -f {} + | |
| cd .. | |
| RANDOM_FILENAME=$(uuidgen).svg | |
| mv ./OUT_FOLDER/notion.svg ./OUT_FOLDER/$RANDOM_FILENAME | |
| echo "Renamed file to $RANDOM_FILENAME" | |
| - name: udpate heatmap | |
| run: | | |
| update_heatmap | |
| - name: push | |
| run: | | |
| git config --local user.email "action@github.com" | |
| git config --local user.name "GitHub Action" | |
| git add . | |
| git commit -m 'add new heatmap' || echo "nothing to commit" | |
| git push || echo "nothing to push" |