Skip to content

Commit

Permalink
chore: Small improvements to CI (#1337)
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk authored Mar 10, 2025
1 parent 4657ecf commit 8d7d790
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci
name: CI

on: [pull_request, push]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: release-please
name: Release Please

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: update-deps
name: Update dependencies

on:
workflow_dispatch:
Expand All @@ -10,7 +10,7 @@ permissions:
pull-requests: write

jobs:
update_deps:
update-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -21,10 +21,18 @@ jobs:
with:
node-version: 22
cache: pnpm
- run: pnpm up --latest
- run: |
pnpm self-update
pnpm up --latest
- uses: peter-evans/create-pull-request@v7
id: cpr
with:
commit-message: 'fix(ignore): update dependencies'
branch: 'deps/all'
title: 'fix(ignore): update dependencies'
token: ${{ secrets.GH_TOKEN }}
- uses: peter-evans/create-or-update-comment@v4
if: ${{ steps.cpr.outputs.pull-request-number }}
with:
issue-number: ${{ steps.cpr.outputs.pull-request-number }}
body: 'CC: @Koenkk'

0 comments on commit 8d7d790

Please sign in to comment.