Skip to content

Commit

Permalink
Merge branch '4.0.x' into k8s-cluster-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
fdevans committed Nov 22, 2024
2 parents 034f559 + 42ff5bc commit 17c9d1b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
15 changes: 0 additions & 15 deletions .github/mergeable.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/check-milestone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
pull_request_target:
types: [opened, synchronize, reopened, milestoned, demilestoned]
branches:
- 4.0.x
jobs:
milestonecheck:
permissions:
pull-requests: read
name: PR Milestone Check
runs-on: ubuntu-latest
steps:
- name: PR requires a milestone
run: |
MILESTONE=$(gh pr view $PR --json milestone -q .milestone)
if [ $? != 0 ] ; then
echo "Failed"
exit 1
fi
if [ -z "$MILESTONE" ] ; then
echo "::notice::Milestone is required"
exit 2
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.html_url }}
3 changes: 2 additions & 1 deletion docs/learning/solutions/database-management/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ To see example content listed below check out the [Getting Started with Solution
| Examples |
| --- |
| <img src="/assets/img/rds-logo.png" width="30" height="30"> [Check Database Storage Status](/learning/solutions/database-management/db-and-autodiag.md) |

| <img src="/assets/img/postgres-logo.png" width="30" height="30"> [Postgres Backup and Restore](/learning/solutions/database-management/postgres-backup-restore.md) |
| <img src="/assets/img/postgres-logo.png" width="30" height="30"> [Postgres Reindex Database](/learning/solutions/database-management/postgres-reindex.md) |

0 comments on commit 17c9d1b

Please sign in to comment.