From 8a841e8c8691ff63b2fe29d2fe718e23a09264dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Jul 2022 20:27:07 +0000 Subject: [PATCH 1/3] Bump file-type from 17.1.2 to 17.1.3 Bumps [file-type](https://github.com/sindresorhus/file-type) from 17.1.2 to 17.1.3. - [Release notes](https://github.com/sindresorhus/file-type/releases) - [Commits](https://github.com/sindresorhus/file-type/compare/v17.1.2...v17.1.3) --- updated-dependencies: - dependency-name: file-type dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 02fefee..73745b3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -305,9 +305,9 @@ fast-deep-equal@^3.1.3: integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== file-type@^17.1.2: - version "17.1.2" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-17.1.2.tgz#9257437a64e0c3623f70d9f27430522d978b1384" - integrity sha512-3thBUSfa9YEUEGO/NAAiQGvjujZxZiJTF6xNwyDn6kB0NcEtwMn5ttkGG9jGwm/Nt/t8U1bpBNqyBNZCz4F4ig== + version "17.1.3" + resolved "https://registry.yarnpkg.com/file-type/-/file-type-17.1.3.tgz#aa012d7e920f8fdec86cea34d7e59b3afb3d83b7" + integrity sha512-MFVSozBIhvnx2dkxlf+010Xqn6+ojlMUT9LXQiPNoOijgRtXNMghWdGK0u2o1RoCqzHoVsw65IL8ZBcQ4MhIrw== dependencies: readable-web-to-node-stream "^3.0.2" strtok3 "^7.0.0-alpha.7" From 760ad465f3c90f4b8f3648cbb099b0ad4cea3b36 Mon Sep 17 00:00:00 2001 From: Emotion Date: Mon, 25 Jul 2022 01:41:15 +1200 Subject: [PATCH 2/3] Create release.yml --- .github/workflows/release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..16d0377 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,20 @@ +name: Release from Changelog + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. + +on: + push: + tags: + - "v*" + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + release_version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Generate GitHub Release + uses: lsegal/github-release-from-changelog-action@latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From d7a752f47a90f2dd8c1a3963440cf48fd6241d7b Mon Sep 17 00:00:00 2001 From: Emotion Date: Mon, 25 Jul 2022 01:41:34 +1200 Subject: [PATCH 3/3] Delete release.yml --- .github/workflows/release.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 16d0377..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Release from Changelog - -# Controls when the action will run. Workflow runs when manually triggered using the UI -# or API. - -on: - push: - tags: - - "v*" - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - release_version: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Generate GitHub Release - uses: lsegal/github-release-from-changelog-action@latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}