Update notify-early-adopters.yml

This commit is contained in:
Josh Mandel 2021-04-27 18:23:30 -05:00 коммит произвёл GitHub
Родитель a96b410902
Коммит 4215250d5f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

5
.github/workflows/notify-early-adopters.yml поставляемый
Просмотреть файл

@ -9,6 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify zulip stream
env:
ISSUE_TITLE: ${{format('{0}{1}', github.event.issue.title, github.event.pull_request.title)}}
ISSUE_URL: ${{format('{0}{1}', github.event.issue.html_url, github.event.pull_request.html_url)}}
run: |
pip3 install zulip
zulip-send \
@ -17,4 +20,4 @@ jobs:
--user ${{secrets.ZULIP_USER}} \
--stream ${{secrets.ZULIP_STREAM}} \
--subject "Early Adopters: Review Request" \
--message "${{github.event[github.event_name].title}} -- see ${{github.event[github.event_name].html_url}}"
--message "${ISSUE_TITLE} -- see ${ISSUE_URL}"