diff --git a/.github/workflows/star_fork_notification.yml b/.github/workflows/star_fork_notification.yml index dc6349446..d3e85c5d5 100644 --- a/.github/workflows/star_fork_notification.yml +++ b/.github/workflows/star_fork_notification.yml @@ -15,11 +15,11 @@ jobs: - if: ${{ github.event_name == 'fork' }} run: | echo "🎉 triggered by a ${{ github.event_name }} event." - echo "event_name=Forked🍴" >> $GITHUB_ENV + echo "event_name=forked 🍴" >> $GITHUB_ENV - if: ${{ github.event_name == 'watch' }} run: | echo "🎉 triggered by a ${{ github.event_name }} event." - echo "event_name=Starred✨" >> $GITHUB_ENV + echo "event_name=starred ✨" >> $GITHUB_ENV - name: Get repository information run: | @@ -72,7 +72,8 @@ jobs: html_body+="Repo: ${{ github.repository }}

" html_body+="Stargazers list: ${{ github.repository }}/stargazers

" - html_body+='
' + html_body+='' + html_body+='' echo "html_body=$html_body" >> $GITHUB_ENV echo "html body: ${{ env.html_body }}"