Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
23 changes: 23 additions & 0 deletions .github/workflows/first-responder-v2-prs-collect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,29 @@ jobs:
run: |
gh pr edit $PR_URL --add-label docs-content-fr

# 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.
- name: Check if PR is connected to DIY docs issue
id: check-diy-docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
ISSUE_NUMS=$(echo "${{ github.event.pull_request.body }}" | grep -oE '#[0-9]+' | tr -d '#')
for ISSUE_NUM in $ISSUE_NUMS; do
LABELS=$(gh issue view $ISSUE_NUM --json labels --jq '.labels[].name')
if echo "$LABELS" | grep -q 'DIY docs'; then
echo "DIY_DOCS_LABEL=true" >> $GITHUB_ENV
break
fi
done

- name: Add the DIY docs label if connected to a DIY docs issue
if: ${{ env.DIY_DOCS_LABEL == 'true' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: |
gh pr edit $PR_URL --add-label 'DIY docs'

# Add to the FR project
# and set type to "Maintenance" or "External contributor PR"
# and set date to now
Expand Down
12 changes: 12 additions & 0 deletions config/moda/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-boxwood.githubapp.com/

- name: staging-cedar
require_pipeline: false
Expand All @@ -26,6 +27,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-cedar.githubapp.com/

- name: staging-cypress
require_pipeline: false
Expand All @@ -35,6 +37,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-cypress.githubapp.com/

- name: staging-fir
require_pipeline: false
Expand All @@ -44,6 +47,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-fir.githubapp.com/

- name: staging-hemlock
require_pipeline: false
Expand All @@ -53,6 +57,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-hemlock.githubapp.com/

- name: staging-holly
require_pipeline: false
Expand All @@ -62,6 +67,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-holly.githubapp.com/

- name: staging-juniper
require_pipeline: false
Expand All @@ -71,6 +77,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-juniper.githubapp.com/

- name: staging-laurel
require_pipeline: false
Expand All @@ -80,6 +87,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-laurel.githubapp.com/

- name: staging-pine
require_pipeline: false
Expand All @@ -89,6 +97,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-pine.githubapp.com/

- name: staging-redwood
require_pipeline: false
Expand All @@ -98,6 +107,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-redwood.githubapp.com/

- name: staging-sequoia
require_pipeline: false
Expand All @@ -107,6 +117,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-sequoia.githubapp.com/

- name: staging-spruce
require_pipeline: false
Expand All @@ -116,6 +127,7 @@ environments:
cluster_selector:
profile: general
region: iad
extra_completed_message: Review at https://docs-internal-staging-spruce.githubapp.com/

required_builds:
- docs-internal-moda-config-bundle / docs-internal-moda-config-bundle
Expand Down
2 changes: 0 additions & 2 deletions data/release-notes/enterprise-server/3-16/0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,6 @@ sections:
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+.

known_issues:
- |
**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.
- |
Custom firewall rules are removed during the upgrade process.
- |
Expand Down