Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created November 20, 2024 22:12
Show Gist options
  • Save jrichardsz/b57b922afaaa00d7b66f70f9714c28e4 to your computer and use it in GitHub Desktop.
Save jrichardsz/b57b922afaaa00d7b66f70f9714c28e4 to your computer and use it in GitHub Desktop.
github action snippets, github_actions, actions, githubactions

clone private repositories using pat token

 - name: Install requirements
      run: |
        git config --global url."https://${{ secrets.ACESS_TOKEN }}@github".insteadOf https://github
        git clone https://github.com/githubtraining/hellogitworld.git

https://stackoverflow.com/a/66094537/3957754

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment