Skip to content

Commit a19f2cb

Browse files
authored
Merge pull request #45195 from github/repo-sync
Repo sync
2 parents df4329a + 0b02cd6 commit a19f2cb

24 files changed

Lines changed: 1452 additions & 115 deletions

File tree

.github/workflows/enterprise-release-issue.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,18 @@ jobs:
2020
steps:
2121
- name: Checkout repository code
2222
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
23-
- name: Generate GitHub App token
24-
id: app-token
25-
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
26-
with:
27-
app-id: ${{ secrets.DOCS_BOT_APP_ID }}
28-
private-key: ${{ secrets.DOCS_BOT_APP_PRIVATE_KEY }}
29-
owner: github
30-
repositories: docs-content,docs-engineering,enterprise-releases
3123

3224
- uses: ./.github/actions/node-npm-setup
3325

3426
- name: Create an enterprise release issue
3527
run: npm run create-enterprise-issue -- release
3628
env:
37-
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
29+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3830

3931
- name: Create an enterprise deprecation issue
4032
run: npm run create-enterprise-issue -- deprecation
4133
env:
42-
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
34+
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
4335

4436
- uses: ./.github/actions/slack-alert
4537
if: ${{ failure() && github.event_name != 'workflow_dispatch' }}
@@ -49,4 +41,4 @@ jobs:
4941
- uses: ./.github/actions/create-workflow-failure-issue
5042
if: ${{ failure() && github.event_name != 'workflow_dispatch' }}
5143
with:
52-
token: ${{ steps.app-token.outputs.token }}
44+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# ---------------------------------------------------------------
1111
# To update the sha:
1212
# https://github.com/github/gh-base-image/pkgs/container/gh-base-image%2Fgh-base-noble
13-
FROM ghcr.io/github/gh-base-image/gh-base-noble:20260713-090615-gb0d388add@sha256:8708e26b53b2304cf8d933be5e8fbca4fa4d07b3ba6e4be238372a5d3029e443 AS base
13+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20260716-144716-g39f79b427@sha256:4c49a03485e03d2976c45a876365e98f3f3f29eb4ba1546cf03434cd5ae8bbca AS base
1414

1515
# Install curl for Node install and determining the early access branch
1616
# Install git for cloning docs-early-access & translations repos

config/kubernetes/production/deployments/webapp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
# Prevents capacity loss during deploys. Safe because we're over-provisioned.
1515
maxUnavailable: 0
1616
# Percentage so it scales with replica count changes.
17-
maxSurge: '50%'
17+
maxSurge: '100%'
1818
selector:
1919
matchLabels:
2020
app: webapp

0 commit comments

Comments
 (0)