Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Oct 10, 2024
1 parent 4abe6d9 commit 3a38ab3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/jenkins_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@ jobs:
uses: actions/github-script@v6
with:
script: |
const response = await github.rest.repos.getCommitStatus({
const response = await github.request('GET /repos/{owner}/{repo}/commits/{ref}/status', {
owner: 'commaai',
repo: 'openpilot',
ref: 'heads/ui_screen_sleep'
ref: 'heads/master',
headers: {
'Accept': 'application/vnd.github+json',
'X-GitHub-Api-Version': '2022-11-28'
}
});
console.log(response.data);

0 comments on commit 3a38ab3

Please sign in to comment.