Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
edaed87
ci: add a post merge validation tracker
jvbriones Aug 11, 2025
9dcffad
ci: add a post merge validation tracker
jvbriones Aug 11, 2025
6e39195
ci: add a post merge validation tracker
jvbriones Aug 12, 2025
e41c67f
ci: add a post merge validation tracker
jvbriones Aug 12, 2025
d005d55
ci: add a post merge validation tracker
jvbriones Aug 12, 2025
038d91f
ci: add a post merge validation tracker
jvbriones Aug 12, 2025
011b6b8
ci: add a post merge validation tracker
jvbriones Aug 12, 2025
c3d91fe
ci: add a post merge validation tracker
jvbriones Aug 13, 2025
92da9f0
ci: add a post merge validation tracker
jvbriones Aug 14, 2025
b6d50da
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
84bb913
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
cf27931
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
4f585f4
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
9253949
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
c32d620
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
a17cc83
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
b20cefd
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
3306f86
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
abcef29
ci: adapt the post merge validation job to track progress in a google…
jvbriones Aug 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: adapt the post merge validation job to track progress in a google…
… sheet
  • Loading branch information
jvbriones committed Aug 14, 2025
commit 84bb913b13d48ce4e8f34837b5ef95320ee4e700
4 changes: 2 additions & 2 deletions .github/workflows/post-merge-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:
inputs:
repo:
description: 'The repo owner/name to process (e.g. MetaMask/metamask-extension)''
description: 'The repo owner/name to process (e.g. MetaMask/metamask-extension)'
required: true
type: string
start_hour_utc:
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:
REPO: ${{ inputs.repo }}
GITHUB_TOKEN: ${{ secrets.github-token }}
GOOGLE_APPLICATION_CREDENTIALS_BASE64: ${{ secrets.google-application-creds-base64 }}
run: node .github/scripts/post-merge-validation-tracker.mjs
run: node .github/scripts/post-merge-validation-tracker.mjs
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Script Path Error in Workflow

The workflow checks out MetaMask/github-tools into ./github-tools. It then attempts to run post-merge-validation-tracker.mjs from within that checked-out repository. However, this script is located in the current repository, leading to a "file not found" error.

Fix in Cursor Fix in Web

Loading