Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0176c71
First pass at making it so users, other than azd team members, can
Jul 8, 2026
0093972
Also print out the capabilities/providers that are different
Jul 9, 2026
f1ed02c
Make sure we're checking that the latest approval lines up with the l…
Jul 9, 2026
251d72d
Reduce our permissions - the defaults in here are _way_ more than needed
richardpark-msft Jul 9, 2026
b8eb58f
- Moving our script to match what we're doing in other Azure repos (s…
Jul 9, 2026
d1cd560
Intermediate test change - want to see what rights I have to query a …
Jul 9, 2026
a04b4bd
Remove the root one.
Jul 9, 2026
5f50bf0
Going back to the hardcoded list, for now, as reading from an organiz…
Jul 9, 2026
acece2d
Some more cleanup since we're back to the hardcoded list of team memb…
Jul 9, 2026
ae4fa8a
- Slimming down the AI doc comments into something more reasonable.
Jul 10, 2026
fc2a256
- Do a quick check on the artifact URls, make sure they're not going …
Jul 10, 2026
7f9cc85
Adding in CI for my...CI.
Jul 10, 2026
ddbf850
Add in some more checks for fields that might show up in extensions. …
Jul 10, 2026
e164a67
Temporarily add my test branch in again for the CI workflow testing.
Jul 10, 2026
87f8c9e
- Check if they're only adding a single release,a and that it truly i…
Jul 10, 2026
2a5e092
Using the base branch SHA (doesn't affect testing yet since we're sti…
Jul 10, 2026
9523ca0
Updating to use the latest setup-node action and also bumping up the …
Jul 10, 2026
dfbe69c
Add a coverage target. Technically, I'm only using this in vscode so …
Jul 10, 2026
2b06fec
Do checking against the release tarballs, make sure we're not letting…
Jul 10, 2026
f3b3073
Inferred! Makes the doc comment just a little less verbose.
Jul 10, 2026
96ea521
- Disallow any URL encoded characeters. We don't use for for our arti…
Jul 10, 2026
43aa2c8
I'm good with this one, we can remove the branch now :)
Jul 10, 2026
644c0fd
Updating to using pull_request_target, which does come with sharp edg…
Jul 10, 2026
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
41 changes: 41 additions & 0 deletions .github/scripts/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
"rootDir": ".",
// File Layout
"noEmit": true,
// Environment Settings
// See also https://aka.ms/tsconfig/module
"module": "nodenext",
"target": "esnext",
// For nodejs:
// "lib": ["esnext"],
"types": [
"node"
],
"checkJs": true,
// and npm install -D @types/node
// Other Outputs
"sourceMap": true,
"declaration": true,
"declarationMap": true,
// Stricter Typechecking Options
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Style Options
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
// Recommended Options
"strict": true,
"jsx": "react-jsx",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"skipLibCheck": true,
}
}
Loading