새소식

기타

git - GitHub 꾸미기 : 3D 잔디 추가

  • -

3D 잔디


다른 깃허브 꾸미기 서비스 모음

 

 

git - GitHub 꾸미기 관련 서비스 모음

1. 상단바깃허브 URL - https://github.com/kyechan99/capsule-render예시 코드![header](https://capsule-render.vercel.app/api?type=waving&color=gradient&height=250&fontSize=40&fontAlignY=40&animation=fadeIn&text=소개말)2. 깃허브 스택깃허브

dev-kimchi.tistory.com


진행방법

1. 프로필 레포 -> Actions -> 워크플로우 생성


2. 워크플로우 작성 및 커밋

name: GitHub-Profile-3D-Contrib

on:
  schedule: # 00:00 KST == 15:00 UTC
    - cron: "0 15 * * *"
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    name: generate-github-profile-3d-contrib
    steps:
      - uses: actions/checkout@v3
      - uses: yoshi389111/github-profile-3d-contrib@0.7.1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          USERNAME: ${{ github.repository_owner }}
      - name: Commit & Push
        run: |
          git config user.name github-actions
          git config user.email github-actions@github.com
          git add -A .
          git commit -m "update - 3D 그래프 업데이트"
          git push

참고사항 - GITHUB_TOKEN은 자동으로 생성됩니다. 생성할 필요 X


3. GITHUB_TOKEN 권한 설정

프로필 레포 -> Settings -> Actions -> General -> Workflow permissions의 설정을 Read and write permissions
로 변경


4. 워크플로우 실행

프로필 레포 -> Actions -> GitHub-Profile-3D-Contrib -> Run Workflow 실행


5. README.md 수정

<!-- 3D 잔디 -->
![3D 잔디](./profile-3d-contrib/profile-night-rainbow.svg)

프로필 README에 위 코드 추가


사용 가능한 스킨

<!-- 초록 모드 -->
![green animate version](profile-3d-contrib/profile-green-animate.svg)
![green version](profile-3d-contrib/profile-green.svg)

<!-- 북반구 모드 -->
![northern hemisphere animate version](profile-3d-contrib/profile-season-animate.svg)
![northern hemisphere version](profile-3d-contrib/profile-season.svg)

<!-- 남반구 모드 -->
![southern hemisphere animate version](profile-3d-contrib/profile-south-season-animate.svg)
![southern hemisphere version](profile-3d-contrib/profile-south-season.svg)

<!-- 다크 모드 -->
![night version](profile-3d-contrib/profile-night-view.svg)
![night green version](profile-3d-contrib/profile-night-green.svg)
![night rainbow version](profile-3d-contrib/profile-night-rainbow.svg)

<!-- 레고 모드 -->
![gitblock version](profile-3d-contrib/profile-gitblock.svg)

참고 글

3D 잔디 서비스 공식 문서
git - GitHub 꾸미기 관련 서비스 모음

반응형
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.