chore: update sdk_repo_ref default value to 'legacy' in generate SDK action #126
Workflow file for this run
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: Auto First Approval for Bot PRs | |
| on: pull_request | |
| jobs: | |
| auto-first-approve: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| if: github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]' | |
| steps: | |
| - name: Provide first approval | |
| uses: hmarr/auto-approve-action@v4 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| review-message: "Renovate and Dependabot PRs are automatically approved. Still requires human review." |