Skip to content

Commit 7a0b2b0

Browse files
committed
draft core and entraid
1 parent 72413dd commit 7a0b2b0

39 files changed

+3073
-0
lines changed

.github/ISSUE_TEMPLATE

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!--
2+
Github issues should be used to report bugs and for detailed feature requests.
3+
Everything else belongs in the [Redis EntraID Google Group](https://groups.google.com/g/entraid_redis)
4+
or [Redis EntraID Github Discussions](https://github.com/redis/entraid/discussions).
5+
6+
Please post general questions to Google Groups or Github discussions.
7+
These can be closed without response when posted to Github issues.
8+
-->
9+
10+
### Expected behavior
11+
12+
Write here what you're expecting ...
13+
14+
### Actual behavior
15+
16+
Write here what happens instead ...
17+
18+
### Steps to reproduce:
19+
20+
Please create a reproducible case of your problem. Make sure
21+
that case repeats consistently and it's not random
22+
1.
23+
2.
24+
3.
25+
26+
### Redis / EntraID Configuration
27+
28+
#### ClientLibrary and version:
29+
30+
#### Redis version:
31+
32+
#### Java version:

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "maven"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"

.github/release-drafter-config.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name-template: '$NEXT_MINOR_VERSION'
2+
tag-template: 'v$NEXT_MINOR_VERSION'
3+
filter-by-commitish: true
4+
commitish: master
5+
autolabeler:
6+
- label: 'maintenance'
7+
files:
8+
- '*.md'
9+
- '.github/*'
10+
- label: 'bug'
11+
branch:
12+
- '/bug-.+'
13+
- label: 'maintenance'
14+
branch:
15+
- '/maintenance-.+'
16+
- label: 'feature'
17+
branch:
18+
- '/feature-.+'
19+
categories:
20+
- title: '🔥 Breaking Changes'
21+
labels:
22+
- 'breakingchange'
23+
- title: '🧪 Experimental Features'
24+
labels:
25+
- 'experimental'
26+
- title: '🚀 New Features'
27+
labels:
28+
- 'feature'
29+
- 'enhancement'
30+
- title: '🐛 Bug Fixes'
31+
labels:
32+
- 'fix'
33+
- 'bugfix'
34+
- 'bug'
35+
- 'BUG'
36+
- title: '🧰 Maintenance'
37+
labels:
38+
- 'maintenance'
39+
- 'dependencies'
40+
- 'documentation'
41+
- 'docs'
42+
- 'testing'
43+
change-template: '- $TITLE (#$NUMBER)'
44+
exclude-labels:
45+
- 'skip-changelog'
46+
template: |
47+
# Changes
48+
49+
$CHANGES
50+
51+
## Contributors
52+
We'd like to thank all the contributors who worked on this release!
53+
54+
$CONTRIBUTORS
55+

.github/spellcheck-settings.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
matrix:
2+
- name: Markdown
3+
expect_match: false
4+
apsell:
5+
lang: en
6+
d: en_US
7+
ignore-case: true
8+
dictionary:
9+
wordlists:
10+
- .github/wordlist.txt
11+
output: wordlist.dic
12+
pipeline:
13+
- pyspelling.filters.markdown:
14+
markdown_extensions:
15+
- markdown.extensions.extra:
16+
- pyspelling.filters.html:
17+
comments: false
18+
attributes:
19+
- alt
20+
ignores:
21+
- ':matches(code, pre)'
22+
- code
23+
- pre
24+
- blockquote
25+
- img
26+
sources:
27+
- '*.md'
28+
- 'docs/**'

0 commit comments

Comments
 (0)