From dd8042cb5b297c330597ed79f7d3dcc9e132aafa Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Thu, 20 Mar 2025 11:21:06 +0100 Subject: [PATCH 1/2] add automatic prerelase flagging --- .github/workflows/release.yml | 3 ++- .idea/.gitignore | 8 ++++++++ .idea/inspectionProfiles/Project_Default.xml | 5 +++++ .idea/vcs.xml | 4 ++++ 4 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/vcs.xml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 419d92a..122bd18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,8 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, tag_name: '${{ github.ref }}', - name: 'Release ${{ github.ref_name }}' + name: 'Release ${{ github.ref_name }}', + prerelease: '${{ github.ref_name }}'.includes('-') }) - uses: aboutbits/github-actions-node/setup-and-install@v2 with: diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..8d66637 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..d843f34 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file From 441db821437b4263511de12229da62ef3ab4e2be Mon Sep 17 00:00:00 2001 From: Alex Lanz Date: Thu, 20 Mar 2025 12:07:34 +0100 Subject: [PATCH 2/2] remove idea folders --- .gitignore | 16 ++++++++++++++-- .idea/.gitignore | 8 -------- .idea/inspectionProfiles/Project_Default.xml | 5 ----- .idea/vcs.xml | 4 ---- 4 files changed, 14 insertions(+), 19 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index e9e8821..47a1998 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,16 @@ -node_modules -dist +# Basic +.DS_Store + +# IDE +/.idea +/.vscode + +# Project +/node_modules + +# Build +/dist *.tsbuildinfo + +# Cache .eslintcache diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 8d66637..0000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index d843f34..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file