You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc-deploy-dev/action.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -388,6 +388,7 @@ runs:
388
388
shell: bash
389
389
env:
390
390
GITHUB_TOKEN: ${{ inputs.token }} # For gh CLI authentication
391
+
CNAME: ${{ inputs.cname }}
391
392
run: |
392
393
if [[ -d "pull/" ]]; then
393
394
for pr_number in $(ls pull/); do
@@ -403,6 +404,8 @@ runs:
403
404
404
405
# Remove pr directory if it is closed
405
406
if [[ ${closed} == "true" ]]; then
407
+
message="This PR has been closed. Documentation for this pull request will shortly be removed from its [former deployment address](https://${CNAME}/pull/${pr_number})."
0 commit comments