We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fcc21e commit dafa0c6Copy full SHA for dafa0c6
.github/workflows/jenkins_test.yaml
@@ -23,3 +23,15 @@ jobs:
23
});
24
console.log(response.data.statuses[0].context);
25
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