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 9fcc21e commit dafa0c6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/jenkins_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,15 @@ jobs:
});
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 }}

0 comments on commit dafa0c6

Please sign in to comment.