From 697fa57d0516cb09913390285e0f05e07d1787bb Mon Sep 17 00:00:00 2001 From: David Date: Fri, 12 Jun 2026 18:40:05 -0500 Subject: [PATCH 1/3] chore: additional ignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 2c8813d..fa8cf3c 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,7 @@ devenv.local.yaml # Node node_modules yarn.lock + +# Claude +.omc +.claude From c6b38410c81f3d93ccf473da14c2b2bda05f6192 Mon Sep 17 00:00:00 2001 From: David Date: Fri, 12 Jun 2026 18:40:14 -0500 Subject: [PATCH 2/3] ci: add pr creation --- .github/workflows/update-versions.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/update-versions.yml b/.github/workflows/update-versions.yml index ed16f89..c6eadde 100644 --- a/.github/workflows/update-versions.yml +++ b/.github/workflows/update-versions.yml @@ -45,9 +45,21 @@ jobs: git commit -m "chore: update Node.js versions [skip ci]" git push echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" + echo "commit='chore: update Node.js versions'" >> "$GITHUB_OUTPUT" fi + - name: Create pull request + if: ${{ steps.commit.outputs.commit }} + uses: peter-evans/create-pull-request@v8 + with: + commit-message: ${{ steps.update.outputs.commit_message }} + title: ${{ steps.update.outputs.commit_message }} + body: | + Automatically created pull-request to update Node versions. + delete-branch: true + reviewers: davidnbr generate-matrix: + if: ${{ needs.update.outputs.commit_sha }} runs-on: ubuntu-latest needs: [update] outputs: From 8c30722208b30653dd50b26b1d243610857af256 Mon Sep 17 00:00:00 2001 From: David Date: Fri, 12 Jun 2026 18:50:51 -0500 Subject: [PATCH 3/3] ci: fix conditional in matrix --- .github/workflows/update-versions.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-versions.yml b/.github/workflows/update-versions.yml index c6eadde..c1d0c40 100644 --- a/.github/workflows/update-versions.yml +++ b/.github/workflows/update-versions.yml @@ -14,6 +14,7 @@ jobs: contents: write outputs: commit_sha: ${{ steps.commit.outputs.sha }} + commit_message: ${{ steps.commit.outputs.commit }} steps: - uses: actions/checkout@v4 @@ -45,21 +46,21 @@ jobs: git commit -m "chore: update Node.js versions [skip ci]" git push echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" - echo "commit='chore: update Node.js versions'" >> "$GITHUB_OUTPUT" + echo "commit='chore: update Node.js versions'" >> "$GITHUB_OUTPUT" fi - name: Create pull request if: ${{ steps.commit.outputs.commit }} uses: peter-evans/create-pull-request@v8 with: - commit-message: ${{ steps.update.outputs.commit_message }} - title: ${{ steps.update.outputs.commit_message }} + commit-message: ${{ steps.update.outputs.commit }} + title: ${{ steps.update.outputs.commit }} body: | Automatically created pull-request to update Node versions. delete-branch: true reviewers: davidnbr generate-matrix: - if: ${{ needs.update.outputs.commit_sha }} + if: ${{ needs.update.outputs.commit_message }} runs-on: ubuntu-latest needs: [update] outputs: