This repository was archived by the owner on Dec 10, 2025. It is now read-only.
chore(deps): Bump dotenv from 17.2.0 to 17.2.1 in the dotenv group #1450
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-approve | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - labeled | |
| - ready_for_review | |
| - reopened | |
| concurrency: ${{ github.workflow }}-${{ github.head_ref }} | |
| jobs: | |
| approve: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| if: contains(github.event.pull_request.labels.*.name, 'auto-approve') && github.event.pull_request.draft == false | |
| steps: | |
| - name: Checkout PR | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| - name: Auto-approve PRs by other users as team-tf-cdk | |
| if: github.event.pull_request.user.login != 'team-tf-cdk' && (contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) || github.actor == 'dependabot[bot]') | |
| env: | |
| GH_TOKEN: ${{ secrets.TEAM_TF_CDK }} | |
| run: gh pr review ${{ github.event.pull_request.number }} --approve | |
| - name: Auto-approve PRs by team-tf-cdk as github-actions[bot] | |
| if: github.event.pull_request.user.login == 'team-tf-cdk' | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: gh pr review ${{ github.event.pull_request.number }} --approve |