-
Notifications
You must be signed in to change notification settings - Fork 16
Add playwright-mcp package #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
8288e44
Nix flake checks
Pentusha d7faa0e
Add playwright-mcp package
Pentusha 25f159c
Remove dead code
Pentusha f15dd2a
docs: consolidate duplicate MCP config examples into single section w…
Pentusha 80ea4a1
feat: add auto-update steps for playwright-mcp
Pentusha ce0a7b7
refactor: use pname variable and document workspace fix
Pentusha 2efd288
playwright: 1.59.0 -> 1.59.1
Pentusha c6d8415
refactor: update playwright components (#1)
Pentusha 3acbc2d
Bump actions/checkout from 4 to 6 (#2)
dependabot[bot] b16f478
feat: add nix flake update to auto-update workflow
Pentusha 572ffce
fix: use generic PR title for auto-update workflow
Pentusha dac6ff2
fix: use date-based branch name and clean up stale branches
Pentusha a425446
fix: use body-file for PR creation and add flake inputs to summary
Pentusha c6efbd7
feat: update existing PR when auto-update runs multiple times per day
Pentusha b38c586
refactor: show only changed items in PR summary, dynamic flake inputs
Pentusha 96e8bc4
Update to version 1.59.1 (#3)
github-actions[bot] d70f087
fix: use PAT token in auto-update workflow to trigger CI
Pentusha 24031a4
refactor: remove dead code from update.sh
Pentusha 9f57d00
refactor: use matrix strategy for CI jobs
Pentusha ebd5a39
Update to version 1.59.1
github-actions[bot] 96182f1
Merge pull request #4 from Pentusha/auto-update/2026-04-07
github-actions[bot] d859957
refactor: improve commit message in auto-update workflow
Pentusha e91ada6
Auto-update dependencies 2026-04-11
github-actions[bot] 7dc3142
Merge pull request #5 from Pentusha/auto-update/2026-04-11
github-actions[bot] da53b2b
Auto-update dependencies 2026-04-16
github-actions[bot] 3b17e05
Merge pull request #6 from Pentusha/auto-update/2026-04-16
github-actions[bot] fda70c5
Auto-update dependencies 2026-04-21
github-actions[bot] 192a20d
Merge pull request #7 from Pentusha/auto-update/2026-04-21
github-actions[bot] c6f89de
Auto-update dependencies 2026-04-25
github-actions[bot] 521b32b
Merge pull request #8 from Pentusha/auto-update/2026-04-25
github-actions[bot] b31733e
Auto-update dependencies 2026-04-28
github-actions[bot] 4e4372b
Fix playwright-mcp build for v0.0.71
Claude c889273
Merge pull request #9 from Pentusha/auto-update/2026-04-28
github-actions[bot] 8dfc39f
Auto-update dependencies 2026-04-29
github-actions[bot] 5425877
Merge pull request #10 from Pentusha/auto-update/2026-04-29
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "weekly" |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| name: "CI" | ||
| on: | ||
| pull_request: | ||
| jobs: | ||
| check: | ||
| strategy: | ||
| matrix: | ||
| os: [ubuntu-latest, macos-latest] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: cachix/install-nix-action@v31 | ||
| with: | ||
| nix_path: nixpkgs=channel:nixos-unstable | ||
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
| - run: nix build .#playwright-driver | ||
| - run: nix flake check | ||
|
|
||
| automerge: | ||
| runs-on: ubuntu-latest | ||
| needs: [check] | ||
| permissions: write-all | ||
| if: contains(github.event.pull_request.labels.*.name, 'auto-update') | ||
| steps: | ||
| - name: automerge | ||
| uses: pascalgn/automerge-action@v0.16.4 | ||
| env: | ||
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
| MERGE_LABELS: "" |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.