Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Status Chart: Weekly updates, PAT instructions #5341

Merged
merged 9 commits into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compile-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ">=22.2.0"
node-version: ">=23.9.0"
- name: Install Packages
run: |
npm ci
Expand Down
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This branch generates the STL's [Status Chart][].

## Repo

1. Install [Node.js][] 22.2.0 or newer.
1. Install [Node.js][] 23.9.0 or newer.
+ You can accept all of the installer's default options.
2. Open a new Command Prompt.
+ You can run `node --version` to verify that Node.js was successfully installed.
Expand Down Expand Up @@ -48,22 +48,22 @@ Enable GitHub Pages for your fork:

GitHub's GraphQL API requires authentication:

1. Go to your [Personal Access Tokens][] on GitHub.
1. Go to your [Fine-grained personal access tokens][] on GitHub.
2. Click "Generate new token".
3. Name it "STL Status Chart" or anything else you'd like.
4. Don't select any scopes. (This will be a "public access" token.)
5. Click "Generate token". Keep this page open.
6. In your `chart` repo, create a file named `.env` containing:
4. Set the expiration to be no greater than 180 days.
5. Don't change any other settings. (This will be a read-only token.)
6. Click "Generate token". Keep this page open.
7. In your `chart` repo, create a file named `.env` containing:
```
SECRET_GITHUB_PERSONAL_ACCESS_TOKEN=ghp_abcdABCD0123wxyzWXYZ6789
SECRET_GITHUB_PERSONAL_ACCESS_TOKEN=github_pat_MEOW
```
7. Replace `ghp_abcdABCD0123wxyzWXYZ6789` with the personal access token that you just generated.
8. Replace `github_pat_MEOW` with the personal access token that you just generated.
+ The token is unique, so it's used without your username.
+ The [prefix][token-formats] will be `ghp_`.
8. Save the `.env` file.
9. Close the page displaying your personal access token.
10. Clear your clipboard.
11. Verify that `git status` reports "nothing to commit, working tree clean".
9. Save the `.env` file.
10. Close the page displaying your personal access token.
11. Clear your clipboard.
12. Verify that `git status` reports "nothing to commit, working tree clean".
+ This indicates that `.env` is being properly ignored.

**The `.env` file now contains a secret - treat it with respect.**
Expand Down Expand Up @@ -112,7 +112,6 @@ Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

[Chart.js]: https://www.chartjs.org/
[Fine-grained personal access tokens]: https://github.com/settings/personal-access-tokens
[Node.js]: https://nodejs.org/en/
[Personal Access Tokens]: https://github.com/settings/tokens
[Status Chart]: https://microsoft.github.io/STL/
[token-formats]: https://github.blog/2021-04-05-behind-githubs-new-authentication-token-formats/
Loading