GitHub Contributions에서 3D 잔디 이미지를 생성하는 CGrass를 소개하겠습니다. 생성된 이미지를 Github 프로필에 배치할 수 있습니다. CGrass는 Github 액션에서 실행되므로 워크플로를 추가하고 README를 약간 다시 작성하기만 하면 됩니다.
↓ 이 프로젝트의 저장소는 다음 링크에서 보실 수 있습니다
영어 | 일본어
이 프로젝트가 마음에 드셨다면 별점 부탁드립니다 ⭐️
CGrass는 GitHub Actions와 통합할 수 있는 GitHub 기여 이미지 생성기입니다. 이를 통해 GitHub 기여의 3D 이미지를 생성하고 프로필 README에 설정할 수 있습니다.
다음 코드를 프로필 저장소의 .github/workflows/cgrass.yml 파일에 복사하세요.
name: Generate Picture and Push to output branch on: push: branches: - main schedule: - cron: <span>'0 0 * * *'</span> <span># any time you want</span> permissions: contents: write jobs: generate: runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 - name: Generate Picture uses: nrysk/cgrass@v1.0.0 with: github_username: ${{ github.repository_owner }} github_token: ${{ secrets.GITHUB_TOKEN }} output_path: output/output.png command: <span>"theme"</span> argument: <span>"github</span>
GitHub 사용자 이름과 동일한 이름으로 저장소를 생성하세요.
GitHub 사용자 이름이 nrysk인 경우 nrysk라는 저장소를 생성하세요.
.github/workflows/cgrass.yml이라는 파일을 만듭니다.
name: Generate Picture and Push to output branch on: push: branches: - main schedule: - cron: <span>'0 0 * * *'</span> <span># any time you want</span> permissions: contents: write jobs: generate: runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 - name: Generate Picture uses: nrysk/cgrass@v1.0.0 with: github_username: ${{ github.repository_owner }} github_token: ${{ secrets.GITHUB_TOKEN }} output_path: output/output.png command: <span>"theme"</span> argument: <span>"github</span>
푸시(또는 GitHub에서 커밋)하면 GitHub Actions가 실행됩니다. 작업이 완료되면 생성된 이미지가 출력 분기에 저장됩니다.
분할 오류가 발생하면 다시 실행해 보세요.
인수 필드의 문자열을 수정하여 테마를 전환할 수 있습니다.
테마는 github, github-nograss, planet, planet-nograss 4가지 테마로 준비했습니다.
name: Generate Picture and Push to output branch on: push: branches: - main schedule: - cron: '0 0 * * *' # Adjust the time as desired permissions: contents: write jobs: generate: runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 - name: Generate Picture uses: nrysk/cgrass@v1.0.0 with: github_username: ${{ github.repository_owner }} github_token: ${{ secrets.GITHUB_TOKEN }} output_path: output/output.png command: "theme" argument: "github" - name: Push output image to output branch uses: crazy-max/ghaction-github-pages@v4 with: target_branch: output build_dir: output commit_message: "Generate Output Image" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
프로필의 README.md에 이미지를 표시하려면 다음 줄을 추가하고
- name: Generate Picture uses: nrysk/cgrass@v1.0.0 with: github_username: ${{ github.repository_owner }} github_token: ${{ secrets.GITHUB_TOKEN }} output_path: output/output.png command: "theme" argument: "github" # Change this part
테마 파일을 생성하여 맞춤 테마를 사용할 수 있습니다. 자세한 내용은 CGrass를 참고해주세요.
읽어주셔서 감사합니다
위 내용은 ☘️ GitHub 프로필에서 잔디 키우기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!