Skip to content

Commit 988b82b

Browse files
authored
Merge pull request #36763 from github/repo-sync
Repo sync
2 parents 12374f8 + 0896a06 commit 988b82b

3 files changed

Lines changed: 35 additions & 2 deletions

File tree

.github/workflows/first-responder-v2-prs-collect.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,29 @@ jobs:
6565
run: |
6666
gh pr edit $PR_URL --add-label docs-content-fr
6767
68+
# Check if the PR is connected to an issue that has the DIY docs label. If yes, then add the DIY docs label to the PR.
69+
- name: Check if PR is connected to DIY docs issue
70+
id: check-diy-docs
71+
env:
72+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
run: |
74+
ISSUE_NUMS=$(echo "${{ github.event.pull_request.body }}" | grep -oE '#[0-9]+' | tr -d '#')
75+
for ISSUE_NUM in $ISSUE_NUMS; do
76+
LABELS=$(gh issue view $ISSUE_NUM --json labels --jq '.labels[].name')
77+
if echo "$LABELS" | grep -q 'DIY docs'; then
78+
echo "DIY_DOCS_LABEL=true" >> $GITHUB_ENV
79+
break
80+
fi
81+
done
82+
83+
- name: Add the DIY docs label if connected to a DIY docs issue
84+
if: ${{ env.DIY_DOCS_LABEL == 'true' }}
85+
env:
86+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
87+
PR_URL: ${{ github.event.pull_request.html_url }}
88+
run: |
89+
gh pr edit $PR_URL --add-label 'DIY docs'
90+
6891
# Add to the FR project
6992
# and set type to "Maintenance" or "External contributor PR"
7093
# and set date to now

config/moda/deployment.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ environments:
1717
cluster_selector:
1818
profile: general
1919
region: iad
20+
extra_completed_message: Review at https://docs-internal-staging-boxwood.githubapp.com/
2021

2122
- name: staging-cedar
2223
require_pipeline: false
@@ -26,6 +27,7 @@ environments:
2627
cluster_selector:
2728
profile: general
2829
region: iad
30+
extra_completed_message: Review at https://docs-internal-staging-cedar.githubapp.com/
2931

3032
- name: staging-cypress
3133
require_pipeline: false
@@ -35,6 +37,7 @@ environments:
3537
cluster_selector:
3638
profile: general
3739
region: iad
40+
extra_completed_message: Review at https://docs-internal-staging-cypress.githubapp.com/
3841

3942
- name: staging-fir
4043
require_pipeline: false
@@ -44,6 +47,7 @@ environments:
4447
cluster_selector:
4548
profile: general
4649
region: iad
50+
extra_completed_message: Review at https://docs-internal-staging-fir.githubapp.com/
4751

4852
- name: staging-hemlock
4953
require_pipeline: false
@@ -53,6 +57,7 @@ environments:
5357
cluster_selector:
5458
profile: general
5559
region: iad
60+
extra_completed_message: Review at https://docs-internal-staging-hemlock.githubapp.com/
5661

5762
- name: staging-holly
5863
require_pipeline: false
@@ -62,6 +67,7 @@ environments:
6267
cluster_selector:
6368
profile: general
6469
region: iad
70+
extra_completed_message: Review at https://docs-internal-staging-holly.githubapp.com/
6571

6672
- name: staging-juniper
6773
require_pipeline: false
@@ -71,6 +77,7 @@ environments:
7177
cluster_selector:
7278
profile: general
7379
region: iad
80+
extra_completed_message: Review at https://docs-internal-staging-juniper.githubapp.com/
7481

7582
- name: staging-laurel
7683
require_pipeline: false
@@ -80,6 +87,7 @@ environments:
8087
cluster_selector:
8188
profile: general
8289
region: iad
90+
extra_completed_message: Review at https://docs-internal-staging-laurel.githubapp.com/
8391

8492
- name: staging-pine
8593
require_pipeline: false
@@ -89,6 +97,7 @@ environments:
8997
cluster_selector:
9098
profile: general
9199
region: iad
100+
extra_completed_message: Review at https://docs-internal-staging-pine.githubapp.com/
92101

93102
- name: staging-redwood
94103
require_pipeline: false
@@ -98,6 +107,7 @@ environments:
98107
cluster_selector:
99108
profile: general
100109
region: iad
110+
extra_completed_message: Review at https://docs-internal-staging-redwood.githubapp.com/
101111

102112
- name: staging-sequoia
103113
require_pipeline: false
@@ -107,6 +117,7 @@ environments:
107117
cluster_selector:
108118
profile: general
109119
region: iad
120+
extra_completed_message: Review at https://docs-internal-staging-sequoia.githubapp.com/
110121

111122
- name: staging-spruce
112123
require_pipeline: false
@@ -116,6 +127,7 @@ environments:
116127
cluster_selector:
117128
profile: general
118129
region: iad
130+
extra_completed_message: Review at https://docs-internal-staging-spruce.githubapp.com/
119131

120132
required_builds:
121133
- docs-internal-moda-config-bundle / docs-internal-moda-config-bundle

data/release-notes/enterprise-server/3-16/0.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,6 @@ sections:
194194
The CodeQL Action has been updated to v3.28.6 to enable uploading artifacts in debug mode without logging the complete environment when running CodeQL CLI v2.20.3+.
195195
196196
known_issues:
197-
- |
198-
**Note:** This list is not complete. Any new known issues that are identified for the 3.16 release will be added between now and the general availability release.
199197
- |
200198
Custom firewall rules are removed during the upgrade process.
201199
- |

0 commit comments

Comments
 (0)