chore(deps): update taiki-e/install-action digest to dfcb1ee #3743
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 approve | |
| on: pull_request | |
| permissions: {} | |
| jobs: | |
| auto-approve: | |
| if: github.actor == 'renovate[bot]' || 'kilpatty' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Generate token | |
| id: generate_token | |
| uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2 | |
| with: | |
| app_id: ${{ secrets.APP_ID }} | |
| private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
| - uses: hmarr/auto-approve-action@v2 | |
| if: github.actor == 'renovate[bot]' || 'kilpatty' | |
| with: | |
| github-token: ${{ steps.generate_token.outputs.token }} |