python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
GitHub Actions: user that published a release
Given the GitHub Actions workflow below, how can I get the username of the person who published the release that triggered the workflow?
name: My Workflow
on:
release:
types: [ published ]
jobs...

mxcd
Votes: 0
Answers: 1
Unable to get release title in github actions
I've added github action that sends a message on our slack channel on every release.
I've managed to get repo name and tag from github context, but I'm also trying and failing to get release title and...

dsusnjara
Votes: 0
Answers: 1
Github readme latest version of a project release
$ yarn add https://github.com/nameUser/nameProject/releases/download/vA.B.C-alpha/file-A.B.C.tgz
I have a similar thing in the readme of my project, I would like to make sure that every time a versio...
Paul
Votes: 0
Answers: 0