Skip to content

Commit efab7fc

Browse files
committed
TESTING: tools
1 parent 71f5b1c commit efab7fc

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/tools.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ jobs:
294294
allow-prereleases: true
295295
- run: ${{ matrix.run }}
296296
if: github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id
297-
env:
298-
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
297+
# env:
298+
# GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
299299
- name: Generate commit message if not set
300300
if: env.COMMIT_MSG == '' && (github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id)
301301
run: |
@@ -305,7 +305,7 @@ jobs:
305305
# Creates a PR or update the Action's existing PR, or
306306
# no-op if the base branch is already up-to-date.
307307
with:
308-
token: ${{ secrets.GH_USER_TOKEN }}
308+
# token: ${{ secrets.GH_USER_TOKEN }}
309309
branch: actions/tools-update-${{ matrix.id }} # Custom branch *just* for this Action.
310310
delete-branch: true
311311
commit-message: ${{ env.COMMIT_MSG }}

tools/dep_updaters/update-inspector-protocol.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
#!/bin/sh
2-
set -e
2+
set -ex
33
# Shell script to update inspector_protocol in the source tree to the version same with V8's.
44

55
BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd)
66
DEPS_DIR="$BASE_DIR/deps"
77

8+
git status
9+
810
# shellcheck disable=SC1091
911
. "$BASE_DIR/tools/dep_updaters/utils.sh"
1012

0 commit comments

Comments
 (0)