Skip to content

Commit

Permalink
Merge pull request #125 from SwissDataScienceCenter/repo-config
Browse files Browse the repository at this point in the history
Update repository configuration
  • Loading branch information
eikek authored May 15, 2024
2 parents ba8968f + 04fd789 commit a8ea732
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name-template: "$RESOLVED_VERSION"
tag-template: "$RESOLVED_VERSION"
template: |
## What’s Changed
$CHANGES
categories:
- title: "🚀 Features"
labels:
- 'feature'
- 'enhancement'
- title: "🐛 Bug Fixes"
labels:
- 'fix'
- 'bug'
- title: "💚 Maintenance"
label:
- 'chore'
- 'dependencies'
- 'documentation'

change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
version-resolver:
major:
labels:
- 'breaking'
minor:
labels:
- 'feature'
- 'enhancement'
patch:
labels:
- 'chore'
- 'documentation'
- 'dependencies'
default: patch
exclude-labels:
- 'skip-changelog'
14 changes: 14 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Release Drafter

on:
push:
branches:
- development

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Publish Release (${{ env.RS_VERSION }})
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
#if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
Expand Down
6 changes: 6 additions & 0 deletions helm-chart/renku-search/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v1
appVersion: '1.0'
description: A Helm chart for renku search services
name: renku-search
# This is a dummy version just to satisfy GH action job. The real version is set during the release process.
version: 0.0.1
9 changes: 9 additions & 0 deletions helm-chart/renku-search/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
search:
searchApi:
image:
repository: renku/search-api
tag: 'latest'
searchProvision:
image:
repository: renku/search-provision
tag: 'latest'

0 comments on commit a8ea732

Please sign in to comment.