Add DBM Postgres setup module and extract configure_connection #91852
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://github.com/actions/labeler | |
| name: PR Labels | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - review_requested | |
| jobs: | |
| labeler: | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} # only PRs from this repo | |
| permissions: | |
| contents: read # Needed for labeler-reusable.yml | |
| id-token: write # Needed for dd-octo-sts OIDC token exchange | |
| pull-requests: write # Needed for labeler-reusable.yml | |
| uses: ./.github/workflows/labeler-reusable.yml |