Skip to content

Commit e5ce7e5

Browse files
authored
actions
1 parent 4064a9b commit e5ce7e5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/demo.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: demo
2-
on: workflow_dispatch
2+
on: workflow_dispatch # helps to trigger manually on github actions page
33
jobs:
44
sampleapp-build:
55
runs-on: ubuntu-latest
66
steps:
77
- name: get code
88
uses: actions/checkout@v4
9-
- name: mvn compile
9+
- name: compile
1010
run: mvn compile
1111
- name: review
1212
run: mvn -P metrics pmd:pmd
1313
- name: test
1414
run: mvn test
1515
- name: verify
1616
run: mvn verify
17-
- name: verify
17+
- name: package
1818
run: mvn package

.github/workflows/sampleapp-ci1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sampleapp-ci1
2-
on: workflow_dispatch
2+
on: workflow_dispatch # helps to trigger manually on github actions page
33
jobs:
44
compile:
55
runs-on: ubuntu-latest

.github/workflows/sampleapp-ci2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sampleapp-ci2
2-
on: workflow_dispatch
2+
on: workflow_dispatch # helps to trigger manually on github actions page
33
jobs:
44
compile:
55
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)