Skip to content

Commit 6ffcd94

Browse files
authored
Merge branch 'main' into copilot/fix-54
2 parents 2afd409 + 11ea619 commit 6ffcd94

15 files changed

Lines changed: 935 additions & 290 deletions

.github/workflows/tag-rajbos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
uses: devops-actions/issue-comment-tag@v0.1.8
2323
with:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25-
username: rajbos
25+
team: rajbos

build-for-pages.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ npm install
117117

118118
# Build the app
119119
echo "Building application..."
120+
# Set deploy time for build
121+
export DEPLOY_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
122+
echo "Setting deploy time: $DEPLOY_TIME"
120123
npm run build
121124

122125
# Move the built files to the output directory

deploy-to-pages.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ cat > temp-vite.config.ts <<EOF
3030
$(cat vite.config.ts | sed "s/build: {/build: {\n base: '\/${REPO_NAME}\/',/")
3131
EOF
3232

33+
# Set deploy time for build
34+
export DEPLOY_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
35+
echo "Setting deploy time: $DEPLOY_TIME"
36+
3337
# Build with temporary config
3438
mv temp-vite.config.ts vite.config.ts
3539
npm run build

deploy.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ rm -rf dist
1010

1111
# Build the frontend
1212
echo "Compiling frontend..."
13+
# Set deploy time for build
14+
export DEPLOY_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
15+
echo "Setting deploy time: $DEPLOY_TIME"
16+
1317
npm install -f # force because there is a known mismatch of shadcn and react 19 - https://ui.shadcn.com/docs/react-19
1418
npm run build
1519

favicon.svg

Lines changed: 12 additions & 0 deletions
Loading

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>GitHub Copilot Premium Requests Usage Analyzer</title>
88
<link rel="stylesheet" href="/src/main.css" />
99
<link rel="stylesheet" href="/src/index.css" />
10-
<link rel="icon" href="https://github.githubassets.com/favicons/favicon.svg" />
10+
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
1111
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
1212
</head>
1313

0 commit comments

Comments
 (0)