Periodic PR Auto Approval #928
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: Periodic PR Auto Approval | |
| on: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| jobs: | |
| dependabot-hepler: | |
| name: Dependabot Helper | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: run dependabot auto-merge script | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB }} | |
| run: ./hack/dependabot_helper.bash |