🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). This channel is logged for the purpose of keeping a history about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | Log inspection is getting closer to beta. If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 25 August 2021.
melezhik . 00:46
tellable6 2021-10-30T18:09:08Z #raku <SmokeMachine> melezhik is there an API call I could add on my github action to automatically add a new release comment on mybf?
melezhik SmokeMachine - as a _temporary_ solution you can use this - gist.github.com/melezhik/c3c080c45...3fd87e2121
you need to know token - which is set as token cookies once you logged, you see it in browser 00:47
eventually I will implement more elegant solution, but now this should work 00:48
and `user` should be your GH account
SmokeMachine melezhik: does the token change? or can I set it on my GitHub secrets and that's ok? 00:50
melezhik token is a cookie which is set by web app once you're logged in 00:51
it's not a GH token
and yes it's changed every time you've logged in, but you can use ANY token
SmokeMachine melezhik: yes, I got it, but will it change/expire?
melezhik as it does not expire ))
I know it's not secure , and like I said it's not elegant solution right now 00:52
I will improve security side eventually
melezhik weekly: weekly update for Raku on #mybfio - mybf.io/?language=Raku&filter=top 23:33
notable6 melezhik, Noted! (weekly)
Doc_Holliwould m: role S {}; multi sub infix:<cmp>( S $a, S $b ) { say 'hi' }; sort map { $_ but S }, <a x b> 23:34
camelia ( no output )
Doc_Holliwould why doesn't my multi get called here? 23:35