fix: upgrade minimatch dependency (#2000) #41
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: Update canary snapshots | |
| # on: | |
| # schedule: | |
| # - cron: "0 8 * * 1" | |
| # workflow_dispatch: | |
| # permissions: | |
| # contents: write | |
| # pull-requests: write | |
| # jobs: | |
| # update: | |
| # runs-on: ubuntu-latest | |
| # timeout-minutes: 90 | |
| # steps: | |
| # - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| # - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| # with: | |
| # node-version-file: .tool-versions | |
| # - name: Setup pnpm | |
| # uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0 | |
| # - name: Install dependencies | |
| # run: pnpm install --frozen-lockfile | |
| # - name: Build | |
| # run: pnpm run build | |
| # - name: Update canary snapshots | |
| # env: | |
| # ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| # COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }} | |
| # COPILOT_API_KEY: ${{ secrets.COPILOT_API_KEY }} | |
| # CURSOR_API_KEY: ${{ secrets.CURSOR_API_KEY }} | |
| # GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} | |
| # GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }} | |
| # HUGGINGFACE_API_KEY: ${{ secrets.HUGGINGFACE_API_KEY }} | |
| # MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }} | |
| # OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| # OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} | |
| # run: node e2e/scripts/run-canary-tests-docker.mjs --update | |
| # - name: Open PR if snapshots changed | |
| # env: | |
| # GH_TOKEN: ${{ github.token }} | |
| # run: | | |
| # if git diff --quiet -- 'e2e/scenarios'; then | |
| # echo "No canary snapshot changes." | |
| # exit 0 | |
| # fi | |
| # git config user.name "github-actions[bot]" | |
| # git config user.email "github-actions[bot]@users.noreply.github.com" | |
| # BRANCH="canary-snapshots/$(date +%Y%m%d)" | |
| # git checkout -b "$BRANCH" | |
| # git add e2e/scenarios | |
| # git commit -m "chore(e2e): update canary snapshots $(date +%Y-%m-%d)" | |
| # git push origin "$BRANCH" | |
| # gh pr create \ | |
| # --title "chore(e2e): update canary snapshots $(date +%Y-%m-%d)" \ | |
| # --body "Automated canary snapshot update. Review for unexpected structural changes in provider instrumentation before merging." |