Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
java-package: jdk+fx
- name: Create macOS app
if: matrix.os == 'macOS-latest'
run: ./gradlew createApp
run: gradle createApp
- name: Create Linux tar.gz
if: matrix.os == 'ubuntu-latest'
run: ./gradlew createLinuxTargz
run: gradle createLinuxTargz
- name: Create Windows exe
if: matrix.os == 'windows-latest'
run: ./gradlew createWindowsInstaller
run: gradle createWindowsInstaller
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked stale because it has been open 20 days with no activity. If you would like this to remain open, please remove the stale label or comment, otherwise this issue will be closed in 3 days.'
days-before-stale: 20
days-before-close: 3
exempt-issue-labels: 'enhancement'