Closed angushhz closed 3 months ago
![Uploading CleanShot 2024-07-16 at 23.20.45@2x.png…]()
This is my log code add on
export default async (input) => {
// Returns contribution graph html for a full selected year.
const res = await axios.get(
`https://github.com/${input.username}?tab=overview&from=${input.year}-12-01&to=${input.year}-12-31`
);
console.log("🚀 ~ res:", res)
// Retrieves needed data from the html, grabs all the existing squares.
const document = parse(res.data);
console.log("🚀 ~ document:", document)
const elements = document.querySelectorAll("td.ContributionCalendar-day");
console.log("🚀 ~ elements:", elements)
I have find solution here: https://github.com/kefimochi/sync-contribution-graph/issues/13#issuecomment-2233608466
I have totally setup follow you readme. But the result don't show any contribution from private repo in company to my personal
I have log the code i see that element = [] . I dont now why. Could you please help me ? I want to tranfer contribution from 'namdevgg' -> 'angushhz' !
Below is my log ?