-
Hi and thanks for good work. I am not sure if it is a bug or something related with Github but everything was running fine for long time and last week I noticed sponsor images in a dedicated tier were displayed broken so I rerun the action and they were fixed. I thought it was some temporarily problem of github similar like sometimes unresponsive download numbers etc. but I noticed that it is only happening when action run as "scheduled". I compared deploy log of scheduled run and my re-runs but there is no difference except some changed hash values. There is also no error reported. Urls are looking ok as well but it is diplayed as below on scheduled; and it is becoming normal if i rerun action till next scheduled run. I checked also in different browsers to understand if it is some kind of html rendering issue but displayed as on photo. I hope this info is sufficent for you since I have almost 0 knowledge about actions or maybe someone else is experiencing same issue |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 4 replies
-
now I see there is an extra parameter for "permission" on your read.me file which is missing on my .yml file. I was thinking it could be some kind of permission issue so maybe this could make the trick. I will test and write here back |
Beta Was this translation helpful? Give feedback.
-
Hi again. Yes, I lost a bit time for activating change on .yml file but I can confirm adding below to .yml file fixed it;
Thanks again for your check |
Beta Was this translation helpful? Give feedback.
-
Hi again, It seems like images(probably tokens inside their url) are expiring after 1 or 2 hours and images becoming broken. Yesterday I set my cron to every 5 mins to test if scheduled runs will work then after confirming there is no problem, set it back to regular 8 hours run but noticed they were broken again yesterday night. This morning I started investigating abit more by html decoding working and non-working images and trying to open them in browser. After a few hours (1 or 2, I was busy so dont know exactly when happened), working images not opened in browser when I refresh and at the same they were also broken again in readme.md without any new scheduled or manual action run. I red somewhere here as you made some changes for using private avatar images but do you think they may have some time limit for token expiration? |
Beta Was this translation helpful? Give feedback.
-
I think same thing happening to your readme.md as well if you check below snapshot for your avatars; I am pretty sure that avatars were visible this morning |
Beta Was this translation helpful? Give feedback.
-
I think i am correct about that expire date. I rerun action and copied jwt token part of refreshed avatar url then decrypted jwt token. It has below data;
I modified path value since it is the only part containing private data. Anyway expire timestamp shows this image will die at 17.12.2024 14:40 +0300 which is a few minutes later. Currently image is active both in readme.md and browser. I will update result 5 mins later Edit: Image url died as soon as reached timestamp in exp value. It is still taking a little bit more time for .md file update but url is not reacheable anymore. I hope this helps about problem |
Beta Was this translation helpful? Give feedback.
I think i am correct about that expire date. I rerun action and copied jwt token part of refreshed avatar url then decrypted jwt token. It has below data;
I modified path value since it is the only part containing private data. Anyway expire timestamp shows this image will die at 17.12.2024 14:40 +0300 which is a few minutes later. Currently image is active both in readme.md and browser. I will update result 5 mins later
Edit:
Image url died as soon as reached timestamp in exp value. It is still taking a little bit more time for .md file updat…