You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since late July/early August, using a custom token: $MYBOT_TOKEN no longer results in "mybot released this X days ago." Instead, it incorrectly says "github-actions released this X days ago." Example: https://github.com/iterative/shtab/releases
Is there a problem with action-gh-release? Or is it another accidental breaking change GH made (to be reported at https://github.community)?
The text was updated successfully, but these errors were encountered:
the breaking change was a merge of a pr that introduced resolving the token from an input falling back on an env var. the breaking change was that the input was declared with a default of the actions provided token which always exists meaning the env var would never get used. The fix for backwards compat was to swap the resolution order to look for the env var and then the input
Since late July/early August, using a custom
token: $MYBOT_TOKEN
no longer results in "mybot released this X days ago." Instead, it incorrectly says "github-actions released this X days ago." Example: https://github.com/iterative/shtab/releasesIs there a problem with
action-gh-release
? Or is it another accidental breaking change GH made (to be reported at https://github.community)?The text was updated successfully, but these errors were encountered: