본문 바로가기
개발/Git

remote: Permission to xxx.git denied to github-actions[bot].

by 안뇽! 2023. 9. 4.
반응형

remote: Permission to xxx.git denied to github-actions[bot].

github action으로 version patch up을 자동화 하고 싶어서 다음과 같이 yaml을 작성했는데, 위 이미지와 같은 에러가 떴다.

name: Bump Version

on:
  push:
    branches:
      - main

jobs:
  bump-version:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - run: git config --global user.email "github-actions@example.com"
      - run: git config --global user.name "GitHub Actions"
      - uses: actions/setup-node@v1
        with:
          node-version: 16
      - run: npm version patch
      - run: git push
      - uses: actions/upload-artifact@v2
        with:
          name: src
          path: ./

검색해보니 setting값이 잘못되어 있었다.

해결책

setting->actions->general에서 아래와 같이 설정해주니 해결되었다.

 

반응형