Skip to content

Commit

Permalink
Add workflow job to auto close fixed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
juraj-hrivnak committed Jun 11, 2024
1 parent 9e1c883 commit e30f3b4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,20 @@ jobs:
jar/pakku.jar
dist/*.zip
dist/*.tar
close-fixed-issues:
name: Close Fixed Issues
runs-on: ubuntu-latest
needs: [release]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: close-fixed-in-dev
uses: juraj-hrivnak/close-issues-based-on-label@master
env:
LABEL: "fixed in dev"
VERSION: ${{ github.ref_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

env:
GRADLE_OPTS: -Dorg.gradle.configureondemand=true -Dorg.gradle.parallel=true -Dkotlin.incremental=false -Dorg.gradle.project.kotlin.incremental.multiplatform=false -Dorg.gradle.project.kotlin.native.disableCompilerDaemon=true -Dorg.gradle.jvmargs="-Xmx5g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"

0 comments on commit e30f3b4

Please sign in to comment.