Github Actions checkout似乎无法验证我的用户

时间:2019-12-19 12:34:11

标签: github github-actions

因此,我对Github操作非常陌生,并尝试在工作流中实施操作。
我需要将repo_2克隆/签出到我的工作流所在的位置repo_1。两者都是私人仓库。
看起来像这样

job:
    name: Cloning private repo
    runs-on: ubuntu-latest
    steps:
    - name: Cloning
      uses: actions/checkout@v1
      with:
        repository: my-username/repo_2
        token: ${{ secrets.PAT }}

我创建了一个PAT并将其作为密钥添加到repo_2。但是,每当我运行工作流程时,都会出现以下错误:

  

[错误]致命:存储库“ https://github.com/my-username/repo_2/”不正确   找到

在我看来好像无法验证身份验证。这是怎么回事吗?我该如何解决?

0 个答案:

没有答案