diff --git a/.github/workflows/tweet-issue.yml b/.github/workflows/tweet-issue.yml index e43bd5a6225b..43c2fd0bfc54 100644 --- a/.github/workflows/tweet-issue.yml +++ b/.github/workflows/tweet-issue.yml @@ -28,7 +28,7 @@ jobs: - name: Check if it is issue uses: ethomson/send-tweet-action@v1 with: - status: 'Help wanted on this issue: "${{ github.event.issue.title }}" - ${{ github.event.issue.html_url }} \#opensource' + status: 'Help wanted: "${{ github.event.issue.title }}" - ${{ github.event.issue.html_url }} \#opensource' consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY_LAYER5 }} consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET_LAYER5 }} access-token: ${{ secrets.TWITTER_ACCESS_TOKEN_LAYER5 }} @@ -38,7 +38,7 @@ jobs: - name: Check if it is PR uses: ethomson/send-tweet-action@v1 with: - status: 'Help wanted on this PR: "${{ github.event.pull_request.title }}" - ${{ github.event.pull_request.html_url }} \#opensource' + status: 'Help wanted: "${{ github.event.pull_request.title }}" - ${{ github.event.pull_request.html_url }} \#opensource' consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY_LAYER5 }} consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET_LAYER5 }} access-token: ${{ secrets.TWITTER_ACCESS_TOKEN_LAYER5 }}