brave-real-browser 1.5.93 → 1.5.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,8 +23,8 @@ on:
23
23
  jobs:
24
24
  publish:
25
25
  runs-on: ubuntu-latest
26
- # Skip if commit is from github-actions bot to prevent infinite loop
27
- if: "github.event_name == 'workflow_dispatch' || !contains(github.event.head_commit.message || '', 'Auto increment')"
26
+ # Skip if commit contains [skip ci] to prevent infinite loop
27
+ if: "!contains(github.event.head_commit.message, '[skip ci]')"
28
28
 
29
29
  steps:
30
30
  - name: Checkout
@@ -68,7 +68,7 @@ jobs:
68
68
  npm install --package-lock-only
69
69
 
70
70
  git add package.json package-lock.json
71
- git commit -m "Auto increment v$OLD_VERSION -> v$NEW_VERSION"
71
+ git commit -m "Auto increment v$OLD_VERSION -> v$NEW_VERSION [skip ci]"
72
72
  git tag "v$NEW_VERSION"
73
73
 
74
74
  - name: Push Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brave-real-browser",
3
- "version": "1.5.93",
3
+ "version": "1.5.94",
4
4
  "description": "This package is designed to bypass puppeteer's bot-detecting captchas such as Cloudflare. It acts like a real browser and can be managed with puppeteer.",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.mjs",