We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 888d84d commit 0e182f4Copy full SHA for 0e182f4
.github/workflows/notify-jenkins.yml
@@ -0,0 +1,25 @@
1
+# This workflow notifies Jenkins job that a commit was pushed to master
2
+name: Trigger jenkins job
3
+
4
+on:
5
+ push:
6
+ branches: [ "master" ]
7
+# pull_request:
8
+# branches: [ "master" ]
9
10
+ # Allows you to run this workflow manually from the Actions tab
11
+ workflow_dispatch:
12
13
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - name: Run
20
+ uses: appleboy/jenkins-action@master
21
+ with:
22
+ url: "https://jenkins.new.test.sematext.com"
23
+ user: "marko.bonaci@sematext.com"
24
+ token: ${{secrets.JENKINS_TOKEN}}
25
+ job: "sematext-agent-java"
0 commit comments