├── README.md
├── profile
├── README.md
└── intro.svg
└── .github
└── release-drafter.yml
/README.md:
--------------------------------------------------------------------------------
1 | # .github
2 | Holds org-wide configuration files.
3 |
--------------------------------------------------------------------------------
/profile/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/.github/release-drafter.yml:
--------------------------------------------------------------------------------
1 | name-template: 'v$NEXT_PATCH_VERSION'
2 | tag-template: 'v$NEXT_PATCH_VERSION'
3 | categories:
4 | - title: '🚀 Features'
5 | labels:
6 | - 'feature'
7 | - 'enhancement'
8 | - title: '🐛 Bug Fixes'
9 | labels:
10 | - 'fix'
11 | - 'bugfix'
12 | - 'bug'
13 | - title: '🔧 Maintenance'
14 | label: 'chore'
15 | change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
16 | template: |
17 | ## Changes
18 | $CHANGES
19 |
20 | Thanks to our contributions from $CONTRIBUTORS.
21 |
22 |
--------------------------------------------------------------------------------
/profile/intro.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------