Skip to content

Commit dafa0c6

Browse files
test
1 parent 9fcc21e commit dafa0c6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/jenkins_test.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,15 @@ jobs:
2323
});
2424
console.log(response.data.statuses[0].context);
2525
console.log(response.data.statuses[0].state);
26+
27+
- name: Push to tmp-jenkins branch
28+
uses: actions/checkout@v4
29+
run: |
30+
git config --global user.name "github-actions[bot]"
31+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
32+
git checkout -b jenkins_run-${{ github.event.issue.number }}
33+
echo "TEST JENKINS 1" >> test_file
34+
git add test_file
35+
git commit -m "test run 1"
36+
GIT_LFS_SKIP_PUSH=1 git push -f origin jenkins_run-${{ github.event.issue.number }}
37+

0 commit comments

Comments
 (0)