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 1b594ab commit be55294Copy full SHA for be55294
.github/workflows/java.yaml
@@ -9,6 +9,25 @@ on:
9
- cron: '0 0 * * *'
10
11
jobs:
12
+ check-copyright:
13
+ name: check copyright
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ # Checking out the repository which is to be actioned
17
+ - uses: actions/checkout@v2
18
+ # Implementing action on repository
19
+ - uses: VinnyBabuManjaly/[email protected]
20
+ with:
21
+ CopyrightString: 'Copyright check\nAll rights reserved (c)\n'
22
+ FileType: '.jsp'
23
+ Path: 'cics-java-liberty-hello-web/'
24
+
25
+ # Creates pull request with all changes in file
26
+ - name: Create Pull Request
27
+ uses: peter-evans/create-pull-request@v7
28
29
+ token: ${{ secrets.GITHUB_TOKEN }}
30
31
build-mvnw:
32
name: Build Maven Wrapper
33
0 commit comments