Skip to content

Commit

Permalink
Merge pull request #9 from daksh7011/ci/release-drafter
Browse files Browse the repository at this point in the history
Add Release drafter app
  • Loading branch information
daksh7011 authored Aug 11, 2024
2 parents d972d20 + de52c07 commit 9ba9abd
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 5 deletions.
33 changes: 33 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
_extends: ".github"

name-template: 'v$RESOLVED_VERSION 🌈'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- title: '🐛 Bug Fixes'
labels:
- 'bug'
- title: '🧰 Maintenance'
labels:
- 'maintenance'
- 'dependency'
- 'CI'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
major:
labels:
- 'major'
minor:
labels:
- 'minor'
patch:
labels:
- 'patch'
default: patch
template: |
## Changes
$CHANGES
8 changes: 7 additions & 1 deletion .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ labels:
- name: bug
color: CC0000
- name: feature
color: 336699
color: 0E8A16
- name: commands
color: 1D76DB
- name: CI
Expand All @@ -52,5 +52,11 @@ labels:
color: 1D76DB
- name: maintenance
color: 1D76DB
- name: major
color: fbca04
- name: minor
color: fbca04
- name: patch
color: fbca04
- name: first-timers-only
oldname: Help Wanted
8 changes: 6 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: "CodeQL"

on:
push:
branches: [ "master" ]
branches:
- master
- develop
pull_request:
branches: [ "master" ]
branches:
- master
- develop
schedule:
- cron: '45 23 * * 6'

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ jobs:

- name: Upload artifacts (Main JAR)
uses: actions/upload-artifact@v4

with:
name: Main JAR
path: build/libs/*-all.jar

- name: Upload artifacts (JARs)
uses: actions/upload-artifact@v4

with:
name: JARs
path: build/libs/*.jar

0 comments on commit 9ba9abd

Please sign in to comment.