About 11,600,000 results
Open links in new tab
  1. Authenticate with GitHub using a token - Stack Overflow

    I am trying to authenticate with GitHub using a personal access token. In the help files at GitHub, it states to use the cURL method to authenticate (Creating a personal access token). I have tried...

  2. Difference between github.token vs secrets.github_token?

    Apr 1, 2021 · Both are equivalent. github.token is the syntax from the Github context, which contains information about the workflow run and the event that triggered the run (source). …

  3. Where to store my Git personal access token? - Stack Overflow

    Is it necessary to store the personal access token somewhere locally on the machine after generating it in GitHub? If yes, is there any preferred way where it could be stored?

  4. How to add a GitHub personal access token to Visual Studio Code

    Aug 13, 2021 · So I logged into GitHub and created a token for my single repository. Now I want to use the token to push/pull my repository from GitHub, in Visual Studio Code, which uses Git and the …

  5. How to update a GitHub access token via command line

    Dec 9, 2021 · If you want to update your GitHub Personal Access Token in VSCode, you can install the GitHub Extension. You can also update your token via the command line. Note that this method …

  6. github - In what ways is an SSH Key different from tokens for git ...

    Apr 13, 2021 · For developers, if you are using a password to authenticate Git operations with GitHub.com today, you must begin using a personal access token over HTTPS (recommended) or …

  7. github - How to pre set git access token for HTTPS - Stack Overflow

    May 27, 2025 · The trick is to use a Git credential helper to store your GitHub token before you do any cloning. That way, Git just grabs the token automatically and you don’t get prompted for anything.

  8. Where are GITHUB_TOKEN and GITHUB_ACTOR secrets stored?

    Dec 10, 2021 · The GITHUB_TOKEN and other secrets are securely stored on GitHub's servers. Specifically, they are encrypted at rest and can only be accessed by GitHub Actions runners during …

  9. How to add a github personal access token into windows credentials ...

    Jan 5, 2022 · 12 How can i properly assign the new token to windows credential ? i did the same thing in macos : put the token in the keychain access and it works, no more filling user/pass manually. In …

  10. Does github script access secrets.GITHUB_TOKEN?

    Aug 17, 2022 · 0 I am using the github marketplace action 'github-script'. The code for which can be seen here. In particular I am using it to create a tag in my repo as described here. I suspect behind …