Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Oct 10, 2024
1 parent f11e549 commit 4abe6d9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/jenkins_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Get Commit Status on PR

on:
pull_request:
types: [opened, synchronize]

jobs:
get-status:
runs-on: ubuntu-latest
steps:
- name: Get Commit Status
uses: actions/github-script@v6
with:
script: |
const response = await github.rest.repos.getCommitStatus({
owner: 'commaai',
repo: 'openpilot',
ref: 'heads/ui_screen_sleep'
});
console.log(response.data);

0 comments on commit 4abe6d9

Please sign in to comment.