Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions .github/workflows/nix-bumper.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: "bumper"

on:
push:
branches:
- "develop"
pull_request_target:
branches:
- "develop"
paths:
- "pnpm-lock.yaml"

jobs:
bumper:
Expand All @@ -16,11 +15,8 @@ jobs:
contents: "write"

steps:
- name: Checkout repository
uses: actions/checkout@v4
# nix runner already has Nix insatlled
# - name: Install Nix
# uses: DeterminateSystems/nix-installer-action@main
# - uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run Bumper
run: nix run .#bumper
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Run Bumper
run: nix run .#bumper
Loading