File tree Expand file tree Collapse file tree 4 files changed +41
-17
lines changed Expand file tree Collapse file tree 4 files changed +41
-17
lines changed Original file line number Diff line number Diff line change
1
+ # Number of days of inactivity before an issue becomes stale
2
+ daysUntilStale : 21
3
+ # Number of days of inactivity before a stale issue is closed
4
+ daysUntilClose : 7
5
+ # Issues with these labels will never be considered stale
6
+ exemptLabels :
7
+ - pinned
8
+ - security
9
+ # Label to use when marking an issue as stale
10
+ staleLabel : stale
11
+ # Comment to post when marking an issue as stale. Set to `false` to disable
12
+ markComment : >
13
+ This issue has been automatically marked as stale because it has not had
14
+ recent activity. It will be closed if no further activity occurs. Thank you
15
+ for your contributions.
16
+ # Comment to post when closing a stale issue. Set to `false` to disable
17
+ closeComment : false
Original file line number Diff line number Diff line change
1
+ name : Build
2
+ on : [push]
3
+
4
+ jobs :
5
+ build :
6
+
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v1
11
+ - uses : actions/setup-java@v1
12
+ with :
13
+ java-version : 1.8
14
+ - name : Build with Gradle
15
+ env :
16
+ run : |
17
+ ./gradlew assemble
18
+ - name : Test with Gradle
19
+ env :
20
+ run : |
21
+ ./gradlew test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ plugins {
3
3
4
4
id " java"
5
5
id " java-gradle-plugin"
6
+ id ' com.adarshr.test-logger' version ' 2.0.0'
6
7
7
8
id " com.gradle.plugin-publish" version " 0.10.0"
8
9
id " maven-publish" // for local testing only
35
36
useJUnitPlatform()
36
37
}
37
38
39
+ import org.gradle.api.tasks.testing.logging.TestLogEvent
38
40
gradlePlugin {
39
41
plugins {
40
42
gitVersioning {
@@ -46,6 +48,7 @@ gradlePlugin {
46
48
}
47
49
}
48
50
51
+
49
52
pluginBundle {
50
53
website = ' https://github.com/qoomon/gradle-git-versioning-plugin'
51
54
vcsUrl = ' https://github.com/qoomon/gradle-git-versioning-plugin.git'
You can’t perform that action at this time.
0 commit comments