From 332f163a5766378b549d6e967e5c89ea2573d19e Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:43:46 +0200 Subject: [PATCH 01/10] wip --- packages/eslint-plugin/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 17490b4f9..8216d729b 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -19,7 +19,7 @@ } }, "files": [ - "README.md", + "README.md ", "CHANGELOG.md", "LICENSE", "./dist", From 5ba5276339ccec1299a5fa177dd9303f223fc363 Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:50:05 +0200 Subject: [PATCH 02/10] empty From c169771013f12169fc23489eb54e0a430c4c2025 Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:52:33 +0200 Subject: [PATCH 03/10] wip --- .github/scripts/generate-dependabot-changeset.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/scripts/generate-dependabot-changeset.ts b/.github/scripts/generate-dependabot-changeset.ts index 84049d577..0d1090655 100644 --- a/.github/scripts/generate-dependabot-changeset.ts +++ b/.github/scripts/generate-dependabot-changeset.ts @@ -36,6 +36,10 @@ const changeset: Changeset = { await writeChangeset(changeset, rootDir); await git.add('-A', rootDir); + +console.log(JSON.stringify(changeset, null, 2)); +console.log(await execAsync('git status')); + await git.commit('chore: update changeset', rootDir); await execAsync('git push', { cwd: rootDir }); From 52fd0f613db32042d397032dd8aad0f13c1de54b Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:54:40 +0200 Subject: [PATCH 04/10] chore: update changeset --- .changeset/violet-paths-stop.md | 5 +++++ .github/scripts/generate-dependabot-changeset.ts | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .changeset/violet-paths-stop.md diff --git a/.changeset/violet-paths-stop.md b/.changeset/violet-paths-stop.md new file mode 100644 index 000000000..9efcfa8e1 --- /dev/null +++ b/.changeset/violet-paths-stop.md @@ -0,0 +1,5 @@ +--- +'@drivenets/eslint-plugin-design-system': patch +--- + +Update dependencies diff --git a/.github/scripts/generate-dependabot-changeset.ts b/.github/scripts/generate-dependabot-changeset.ts index 0d1090655..dcaa84cdb 100644 --- a/.github/scripts/generate-dependabot-changeset.ts +++ b/.github/scripts/generate-dependabot-changeset.ts @@ -37,9 +37,6 @@ await writeChangeset(changeset, rootDir); await git.add('-A', rootDir); -console.log(JSON.stringify(changeset, null, 2)); -console.log(await execAsync('git status')); - await git.commit('chore: update changeset', rootDir); await execAsync('git push', { cwd: rootDir }); From 0566a8c1865ce59a40bf17c7b7bf7fc237a89691 Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:56:54 +0200 Subject: [PATCH 05/10] wip --- .github/workflows/dependabot-changeset.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/dependabot-changeset.yml b/.github/workflows/dependabot-changeset.yml index 794950b7b..ed6e3bcb7 100644 --- a/.github/workflows/dependabot-changeset.yml +++ b/.github/workflows/dependabot-changeset.yml @@ -35,6 +35,11 @@ jobs: fetch-depth: 0 ref: ${{ github.head_ref }} + - name: Configure git user + run: | + git config user.name 'github-actions[bot]' + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' + - name: Install Dependencies uses: ./.github/actions/install From bc7348153860f68d58d87127d1fadb2b75b415b7 Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:58:10 +0200 Subject: [PATCH 06/10] wip --- .github/scripts/generate-dependabot-changeset.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/scripts/generate-dependabot-changeset.ts b/.github/scripts/generate-dependabot-changeset.ts index dcaa84cdb..deb7a1059 100644 --- a/.github/scripts/generate-dependabot-changeset.ts +++ b/.github/scripts/generate-dependabot-changeset.ts @@ -37,9 +37,15 @@ await writeChangeset(changeset, rootDir); await git.add('-A', rootDir); -await git.commit('chore: update changeset', rootDir); +const committed = await git.commit('chore: update changeset', rootDir); -await execAsync('git push', { cwd: rootDir }); +if (!committed) { + throw new Error('Failed to commit changeset'); +} + +const { stderr, stdout } = await execAsync('git push', { cwd: rootDir }); + +console.log({ stderr, stdout }); async function getExistingChangeset() { const changedFiles = await git.getChangedFilesSince({ From ed7a7746629d149558dee03784dafb121ff6f97c Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 13:59:44 +0200 Subject: [PATCH 07/10] wip --- .github/scripts/generate-dependabot-changeset.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/generate-dependabot-changeset.ts b/.github/scripts/generate-dependabot-changeset.ts index deb7a1059..0dcf2d1fa 100644 --- a/.github/scripts/generate-dependabot-changeset.ts +++ b/.github/scripts/generate-dependabot-changeset.ts @@ -37,11 +37,11 @@ await writeChangeset(changeset, rootDir); await git.add('-A', rootDir); -const committed = await git.commit('chore: update changeset', rootDir); +// const committed = await git.commit('chore: update changeset', rootDir); -if (!committed) { - throw new Error('Failed to commit changeset'); -} +const commit = await execAsync('git commit -m "chore: update changeset"', { cwd: rootDir }); + +console.log({ commit }); const { stderr, stdout } = await execAsync('git push', { cwd: rootDir }); From fc07c40367804cfe5feceab2ed37d5267cc1d433 Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 14:00:56 +0200 Subject: [PATCH 08/10] wip --- .github/workflows/dependabot-changeset.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dependabot-changeset.yml b/.github/workflows/dependabot-changeset.yml index ed6e3bcb7..80b6075ce 100644 --- a/.github/workflows/dependabot-changeset.yml +++ b/.github/workflows/dependabot-changeset.yml @@ -35,13 +35,13 @@ jobs: fetch-depth: 0 ref: ${{ github.head_ref }} - - name: Configure git user - run: | - git config user.name 'github-actions[bot]' - git config user.email '41898282+github-actions[bot]@users.noreply.github.com' - - name: Install Dependencies uses: ./.github/actions/install + - name: Configure git user + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' + - name: Generate changeset run: node .github/scripts/generate-dependabot-changeset.ts From 5234ab5c0f3bbfc9be4bf3dbb2974e6603299a87 Mon Sep 17 00:00:00 2001 From: StyleShit <32631382+StyleShit@users.noreply.github.com> Date: Wed, 18 Feb 2026 14:02:50 +0200 Subject: [PATCH 09/10] wip --- .github/workflows/dependabot-changeset.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dependabot-changeset.yml b/.github/workflows/dependabot-changeset.yml index 80b6075ce..e64849012 100644 --- a/.github/workflows/dependabot-changeset.yml +++ b/.github/workflows/dependabot-changeset.yml @@ -1,6 +1,6 @@ name: Dependabot -on: pull_request_target +on: pull_request permissions: {} @@ -40,8 +40,8 @@ jobs: - name: Configure git user run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' + git config user.name 'github-actions[bot]' + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' - name: Generate changeset run: node .github/scripts/generate-dependabot-changeset.ts From 9ff83e09e65b26133b4aad0124aa26d491f7d554 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 12:03:16 +0000 Subject: [PATCH 10/10] chore: update changeset --- .changeset/clean-places-deny.md | 5 +++++ .changeset/violet-paths-stop.md | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .changeset/clean-places-deny.md delete mode 100644 .changeset/violet-paths-stop.md diff --git a/.changeset/clean-places-deny.md b/.changeset/clean-places-deny.md new file mode 100644 index 000000000..32ebaabc9 --- /dev/null +++ b/.changeset/clean-places-deny.md @@ -0,0 +1,5 @@ +--- +"@drivenets/eslint-plugin-design-system": patch +--- + +Update dependencies diff --git a/.changeset/violet-paths-stop.md b/.changeset/violet-paths-stop.md deleted file mode 100644 index 9efcfa8e1..000000000 --- a/.changeset/violet-paths-stop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@drivenets/eslint-plugin-design-system': patch ---- - -Update dependencies