From 2a1f00aa371430056058c8ae0fe47e083e2dcbbe Mon Sep 17 00:00:00 2001 From: itsHenry <2671230065@qq.com> Date: Tue, 4 Jul 2023 22:26:33 +0800 Subject: [PATCH 1/3] chore(main): release 1.3.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80479f3..0f77ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.3.0](https://github.com/itsHenry35/ledu/compare/v1.2.2...v1.3.0) (2023-07-04) + + +### Features + +* ask the user whether to open error reporting website ([5895af6](https://github.com/itsHenry35/ledu/commit/5895af6d4bba750341fa5ca8f4199abccda6347b)) +* support multi course downloading and custom download path ([70ba0b1](https://github.com/itsHenry35/ledu/commit/70ba0b1bc98156c26094c356515c23d9513b73c1)) + ## [1.2.2](https://github.com/itsHenry35/ledu/compare/v1.2.1...v1.2.2) (2023-06-27) From aaded38c4ba15ef58c5dd7a1a88c5959e3cd292e Mon Sep 17 00:00:00 2001 From: itsHenry <2671230065@qq.com> Date: Wed, 5 Jul 2023 12:26:43 +0800 Subject: [PATCH 2/3] CI: only run actions when release published to avoid running three times [skip ci] --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b18f9f2..2985e41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,10 +2,9 @@ name: Build -# Controls when the workflow will run on: - # Triggers the workflow on push or pull request events but only for the "main" branch release: + types: [published] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: From 32ea7e7e451a16b52f3387881596d8be9a5713b2 Mon Sep 17 00:00:00 2001 From: itsHenry <2671230065@qq.com> Date: Wed, 5 Jul 2023 12:34:55 +0800 Subject: [PATCH 3/3] CI: don't run debug when changelog modified [skip ci] --- .github/workflows/debug.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 8a2634b..4d9c72a 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -7,6 +7,8 @@ on: # Triggers the workflow on push or pull request events but only for the "main" branch push: branches: [ "main" ] + paths-ignore: + - 'CHANGELOG.md' pull_request: branches: [ "main" ]