Skip to content

Commit

Permalink
chore(ci): fix pr labeling and cleanup release drafting (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm authored Oct 20, 2024
1 parent 3c6de00 commit 3f49aa6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
1 change: 0 additions & 1 deletion .github/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ enhancement: ["feature/*", "feat/*"]
chore: ["chore/*"]
dependencies: ["renovate/*"]
bug: fix/*
chore :hammer:: chore/*
16 changes: 0 additions & 16 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,6 @@ jobs:
with:
fetch-depth: 0

- name: Find Next Version
id: version
run: |
tag_prefix="mdns-browser-"
current_version=$(jq -r '.version' src-tauri/tauri.conf.json)
IFS='.' read -r -a version_parts <<< "$current_version"
major=${version_parts[0]}
minor=${version_parts[1]}
patch=${version_parts[2]}
new_patch=$((patch + 1))
new_version="v$major.$minor.$new_patch"
echo Current version: v$current_version
echo New target version: $new_version
echo "tag=$tag_prefix$new_version" >> "$GITHUB_OUTPUT"
echo "name=mDNS-Browser Release $new_version" >> "$GITHUB_OUTPUT"
- name: Run Release Drafter
uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 # v6.0.0
env:
Expand Down

0 comments on commit 3f49aa6

Please sign in to comment.