Skip to content

Commit f1b1636

Browse files
authoredMar 14, 2025
Status Chart: Weekly updates, PAT instructions (#5341)
1 parent 3aaffbf commit f1b1636

File tree

5 files changed

+165
-177
lines changed

5 files changed

+165
-177
lines changed
 

‎.github/workflows/compile-typescript.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: ">=22.2.0"
19+
node-version: ">=23.9.0"
2020
- name: Install Packages
2121
run: |
2222
npm ci

‎README.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This branch generates the STL's [Status Chart][].
66

77
## Repo
88

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

4949
GitHub's GraphQL API requires authentication:
5050

51-
1. Go to your [Personal Access Tokens][] on GitHub.
51+
1. Go to your [Fine-grained personal access tokens][] on GitHub.
5252
2. Click "Generate new token".
5353
3. Name it "STL Status Chart" or anything else you'd like.
54-
4. Don't select any scopes. (This will be a "public access" token.)
55-
5. Click "Generate token". Keep this page open.
56-
6. In your `chart` repo, create a file named `.env` containing:
54+
4. Set the expiration to be no greater than 180 days.
55+
5. Don't change any other settings. (This will be a read-only token.)
56+
6. Click "Generate token". Keep this page open.
57+
7. In your `chart` repo, create a file named `.env` containing:
5758
```
58-
SECRET_GITHUB_PERSONAL_ACCESS_TOKEN=ghp_abcdABCD0123wxyzWXYZ6789
59+
SECRET_GITHUB_PERSONAL_ACCESS_TOKEN=github_pat_MEOW
5960
```
60-
7. Replace `ghp_abcdABCD0123wxyzWXYZ6789` with the personal access token that you just generated.
61+
8. Replace `github_pat_MEOW` with the personal access token that you just generated.
6162
+ The token is unique, so it's used without your username.
62-
+ The [prefix][token-formats] will be `ghp_`.
63-
8. Save the `.env` file.
64-
9. Close the page displaying your personal access token.
65-
10. Clear your clipboard.
66-
11. Verify that `git status` reports "nothing to commit, working tree clean".
63+
9. Save the `.env` file.
64+
10. Close the page displaying your personal access token.
65+
11. Clear your clipboard.
66+
12. Verify that `git status` reports "nothing to commit, working tree clean".
6767
+ This indicates that `.env` is being properly ignored.
6868
6969
**The `.env` file now contains a secret - treat it with respect.**
@@ -112,7 +112,6 @@ Copyright (c) Microsoft Corporation.
112112
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
113113
114114
[Chart.js]: https://www.chartjs.org/
115+
[Fine-grained personal access tokens]: https://github.com/settings/personal-access-tokens
115116
[Node.js]: https://nodejs.org/en/
116-
[Personal Access Tokens]: https://github.com/settings/tokens
117117
[Status Chart]: https://microsoft.github.io/STL/
118-
[token-formats]: https://github.blog/2021-04-05-behind-githubs-new-authentication-token-formats/

0 commit comments

Comments
 (0)
Failed to load comments.