Skip to content

Commit 4b66651

Browse files
Removed dependabot from ignore list of build-snapshot workflow (#133)
* dependabot doesn't run ci-unwelcome-words workflow * use JDK 21 for build
1 parent 71edb57 commit 4b66651

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/build-sanpshot.yml renamed to .github/workflows/build-snapshot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches-ignore:
66
- master
77
- version-*
8-
- dependabot**
98
paths-ignore:
109
- README.md
1110

.github/workflows/ci-unwelcome-words.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
test:
88
runs-on: ubuntu-latest
9+
if: github.actor != 'dependabot[bot]'
910
steps:
1011
- uses: actions/checkout@v4
1112
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gradle:8.11.1-jdk11 AS build
1+
FROM gradle:8.11.1-jdk21 AS build
22
ARG app_version=0.0.0
33
COPY ./ .
44
RUN gradle --no-daemon clean build dockerPrepare -Prelease_version=${release_version}

0 commit comments

Comments
 (0)