Bump fast-xml-parser and @aws-sdk/xml-builder in /aws-sdk-build #97
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
| name: Retarget Dependabot PRs to develop | |
| on: | |
| pull_request_target: | |
| branches: | |
| - master | |
| jobs: | |
| retarget-pull-request: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor == 'dependabot[bot]' }} | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| steps: | |
| - name: Change base branch to develop | |
| run: gh pr edit "$PR_URL" --base develop |