Skip to content

How to get status check from commit through? #245

Answered by xalakox
alexisdrakopoulos asked this question in Help
Discussion options

You must be logged in to vote

the github.sha contains the sha for the commit before the update, this worked for me :

    - name: Send the OK back to gitub
      run: |
        curl --request POST \
        --url https://api.github.com/repos/${{ github.repository }}/statuses/`git rev-parse HEAD` \
        --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
        --header 'content-type: application/json' \
        --data '{
          "context": "test",
          "state": "success",
          "description": "Staging tests passed",
          "target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
        }'

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by stefanzweifel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #231 on October 05, 2022 18:14.