Skip to content

Commit 17c9d1b

Browse files
committed
Merge branch '4.0.x' into k8s-cluster-plugins
2 parents 034f559 + 42ff5bc commit 17c9d1b

File tree

3 files changed

+28
-16
lines changed

3 files changed

+28
-16
lines changed

.github/mergeable.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/check-milestone.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on:
2+
pull_request_target:
3+
types: [opened, synchronize, reopened, milestoned, demilestoned]
4+
branches:
5+
- 4.0.x
6+
jobs:
7+
milestonecheck:
8+
permissions:
9+
pull-requests: read
10+
name: PR Milestone Check
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: PR requires a milestone
14+
run: |
15+
MILESTONE=$(gh pr view $PR --json milestone -q .milestone)
16+
if [ $? != 0 ] ; then
17+
echo "Failed"
18+
exit 1
19+
fi
20+
if [ -z "$MILESTONE" ] ; then
21+
echo "::notice::Milestone is required"
22+
exit 2
23+
fi
24+
env:
25+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
PR: ${{ github.event.pull_request.html_url }}

docs/learning/solutions/database-management/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ To see example content listed below check out the [Getting Started with Solution
1919
| Examples |
2020
| --- |
2121
| <img src="/assets/img/rds-logo.png" width="30" height="30"> [Check Database Storage Status](/learning/solutions/database-management/db-and-autodiag.md) |
22-
22+
| <img src="/assets/img/postgres-logo.png" width="30" height="30"> [Postgres Backup and Restore](/learning/solutions/database-management/postgres-backup-restore.md) |
23+
| <img src="/assets/img/postgres-logo.png" width="30" height="30"> [Postgres Reindex Database](/learning/solutions/database-management/postgres-reindex.md) |

0 commit comments

Comments
 (0)