Fix: missing evolvefrom in Perfect Order for Mega/Exs #1123
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: Card Info Comment | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| paths: | |
| - '.github/workflows/comment-pr.yml' | |
| - '.github/scripts/*' | |
| - 'data/**/*.ts' | |
| - 'data-asia/**/*.ts' | |
| jobs: | |
| card-info-comment: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| defaults: | |
| run: | |
| working-directory: .github/scripts | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun i --frozen-lockfile | |
| - name: Run load-cards script | |
| id: load-cards | |
| run: bun load-cards.js | |
| env: | |
| INPUT_GITHUB-TOKEN: ${{ secrets.TCGDEX_BOT }} |