-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete dependabot.yml and migrate to version catalogues along with de…
…pendency version bumps (#134)
- Loading branch information
Showing
53 changed files
with
972 additions
and
868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 🗣 Ask a Question, Discuss | ||
url: https://github.com/anitrend/retrofit-graphql/discussions | ||
about: General discussion, suggest ideas, share concepts or resources or ask questions, like "How does this work 🤔?" | ||
- name: 🤗 Support the Project | ||
url: https://patreon.com/wax911 | ||
about: Support the AniTrend financially. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: '$RESOLVED_VERSION' | ||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'feature' | ||
collapse-after: 5 | ||
- title: '✨ Improvements' | ||
labels: | ||
- 'enhancement' | ||
collapse-after: 5 | ||
- title: '🛠️ Bug Fixes' | ||
labels: | ||
- 'bug fix' | ||
collapse-after: 5 | ||
- title: '🧰 Maintenance' | ||
labels: | ||
- 'refactor' | ||
collapse-after: 5 | ||
- title: '📦 Dependencies' | ||
labels: | ||
- 'dependencies' | ||
collapse-after: 5 | ||
- title: '🔖 Other changes' | ||
autolabeler: | ||
- label: 'docs' | ||
files: | ||
- '*.md' | ||
branch: | ||
- '/docs{0,1}\/.+/' | ||
- label: 'bug fix' | ||
branch: | ||
- '/bugfix\/.+/' | ||
- '/hotfix\/.+/' | ||
- label: 'feature' | ||
branch: | ||
- '/feature\/.+/' | ||
- label: 'enhancement' | ||
branch: | ||
- '/enhancement\/.+/' | ||
- label: 'refactor' | ||
branch: | ||
- '/refactor\/.+/' | ||
- label: 'dependencies' | ||
branch: | ||
- '/dependencies\/.+/' | ||
- '/renovate\/.+/' | ||
change-template: '- $TITLE by @$AUTHOR in #$NUMBER' | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'breaking' | ||
minor: | ||
labels: | ||
- 'enhancement' | ||
- 'feature' | ||
patch: | ||
labels: | ||
- 'bug fix' | ||
- 'dependencies' | ||
- 'refactor' | ||
default: patch | ||
exclude-labels: | ||
- 'skip-changelog' | ||
template: | | ||
# What's Changed | ||
$CHANGES | ||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"branchPrefix": "dependencies/", | ||
"reviewers": ["wax911"], | ||
"baseBranches": [ | ||
"develop" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "Sample Module Dependencies", | ||
"packagePatterns": [ | ||
"^androidx\\.activity", | ||
"^androidx\\.fragment", | ||
"^androidx\\.core", | ||
"^androidx\\.constraintlayout", | ||
"^androidx\\.swiperefreshlayout", | ||
"^androidx\\.preference", | ||
"^androidx\\.recyclerview", | ||
"^com\\.google\\.android\\.material", | ||
"^io\\.coil-kt", | ||
"^com\\.github\\.anitrend\\.support-arch", | ||
"^com\\.jakewharton\\.threetenabp", | ||
"^com\\.jakewharton\\.timber" | ||
], | ||
"matchPaths": [ | ||
"sample/**" | ||
] | ||
}, | ||
{ | ||
"groupName": "Room Dependencies", | ||
"packagePatterns": [ | ||
"^androidx\\.room" | ||
], | ||
"matchPaths": [ | ||
"sample/**" | ||
] | ||
}, | ||
{ | ||
"groupName": "Paging Dependencies", | ||
"packagePatterns": [ | ||
"^androidx\\.paging" | ||
], | ||
"matchPaths": [ | ||
"sample/**" | ||
] | ||
}, | ||
{ | ||
"groupName": "Kotlinx Serialization", | ||
"packagePatterns": [ | ||
"^org\\.jetbrains\\.kotlinx\\.serialization" | ||
], | ||
"matchPaths": [ | ||
"sample/**" | ||
] | ||
}, | ||
{ | ||
"groupName": "Koin Dependencies", | ||
"packagePatterns": [ | ||
"^org\\.koin" | ||
], | ||
"matchPaths": [ | ||
"sample/**" | ||
] | ||
}, | ||
{ | ||
"groupName": "Testing Dependencies", | ||
"packagePatterns": [ | ||
"^junit", | ||
"^io\\.mockk", | ||
"^androidx\\.test", | ||
"^androidx\\.test\\.espresso", | ||
"^androidx\\.test\\.ext" | ||
] | ||
}, | ||
{ | ||
"groupName": "Jetbrains Dependencies", | ||
"packagePatterns": [ | ||
"^org\\.jetbrains\\.kotlin" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
name: Run spotless check | ||
name: android-spotless | ||
|
||
on: | ||
on: | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
branches: | ||
- develop | ||
- '*' | ||
|
||
jobs: | ||
build: | ||
|
||
android-spotless: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Run spotless check | ||
run: ./gradlew library:spotlessCheck | ||
- uses: actions/checkout@v4 | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: 'adopt' | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v3 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Run spotless check | ||
run: ./gradlew spotlessCheck |
Oops, something went wrong.