This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.request('GET /repos/{owner}/{repo}/commits/{ref}/status', { | |
owner: 'commaai', | |
repo: 'openpilot', | |
ref: 'heads/master', | |
headers: { | |
'Accept': 'application/vnd.github+json', | |
'X-GitHub-Api-Version': '2022-11-28' | |
} | |
}); | |
console.log(response.data.statuses[0].context); | |
console.log(response.data.statuses[0].state); | |
- name: Push to tmp-jenkins branch | |
uses: actions/checkout@v4 | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git checkout -b jenkins_run-${{ github.event.issue.number }} | |
echo "TEST JENKINS 1" >> test_file | |
git add test_file | |
git commit -m "test run 1" | |
GIT_LFS_SKIP_PUSH=1 git push -f origin jenkins_run-${{ github.event.issue.number }} | |