feat: Consider SERVICE_BINDING_ROOT
Env Var for Layered Bindings
#133
This file contains 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
name: dependabot merger | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
review-pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' && | |
github.event_name == 'pull_request' }} | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v2.0.0 | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
- name: setup git | |
run: | | |
git config --global user.email "cloudsdk@sap.com" | |
git config --global user.name "SAP Cloud SDK" | |
- name: comment major updates | |
if : ${{ steps.metadata.outputs.update-type == 'version-update:semver-major' }} | |
run: | | |
gh pr comment $PR_URL --body "PR **not approved** because it includes a major update of a dependency" | |
gh pr edit $PR_URL --add-label "please review" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GH_TOKEN: ${{ secrets.CLOUD_SDK_AT_SAP_ALL_ACCESS_PAT }} | |
- name: approve and merge | |
if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-patch' || | |
steps.metadata.outputs.update-type == 'version-update:semver-minor' }} | |
run: | | |
gh pr review --approve "$PR_URL" | |
gh pr merge --auto --squash "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GH_TOKEN: ${{ secrets.CLOUD_SDK_AT_SAP_ALL_ACCESS_PAT }} |