Skip to content

Commit 318a239

Browse files
authored
Merge pull request #37012 from github/repo-sync
Repo sync
2 parents ed620aa + 8c78a30 commit 318a239

File tree

14 files changed

+215
-207
lines changed

14 files changed

+215
-207
lines changed

.github/workflows/ready-for-doc-review.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,25 @@ jobs:
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.DOCS_BOT_PAT_WRITEORG_PROJECT }}
5151
run: |
52+
echo "Extracting issue numbers from PR description..."
5253
ISSUE_NUMS=$(echo "${{ github.event.pull_request.body }}" | grep -oE '(https://github.com/github/docs-content/issues/[0-9]+|github/docs-content#[0-9]+|#[0-9]+)' | grep -oE '[0-9]+$')
54+
echo "Extracted issue numbers: $ISSUE_NUMS"
5355
5456
if [ -n "$ISSUE_NUMS" ]; then
5557
for ISSUE_NUM in $ISSUE_NUMS; do
5658
# Check if the issue exists in the docs-content repository
59+
echo "Checking issue $ISSUE_NUM in the docs-content repository..."
5760
if gh issue view $ISSUE_NUM --repo github/docs-content --json labels > /dev/null 2>&1; then
61+
echo "Issue $ISSUE_NUM exists in docs-content. Fetching labels..."
5862
# Fetch labels for the issue
5963
LABELS=$(gh issue view $ISSUE_NUM --repo github/docs-content --json labels --jq '.labels[].name' || echo "")
64+
echo "Labels for issue $ISSUE_NUM: $LABELS"
6065
if echo "$LABELS" | grep -q 'DIY docs'; then
66+
echo "DIY docs label found for issue $ISSUE_NUM."
6167
echo "DIY_DOCS_LABEL=true" >> $GITHUB_ENV
6268
break
69+
else
70+
echo "DIY docs label not found for issue #$ISSUE_NUM."
6371
fi
6472
else
6573
echo "Issue $ISSUE_NUM does not exist in the docs-content repository."

src/github-apps/lib/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@
6060
"2022-11-28"
6161
]
6262
},
63-
"sha": "fd8b14666d8a4e34411bee8dbd103edc8b81d0e3"
63+
"sha": "dd7e0cab3399025166a33575ce09af6ff60bb26a"
6464
}

src/rest/data/fpt-2022-11-28/schema.json

Lines changed: 58 additions & 58 deletions
Large diffs are not rendered by default.

src/rest/data/ghec-2022-11-28/schema.json

Lines changed: 78 additions & 78 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)