mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 06:46:55 +00:00
24 lines
363 B
YAML
24 lines
363 B
YAML
name: bumper
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request_target:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- pnpm-lock.yaml
|
|
|
|
jobs:
|
|
bumper:
|
|
runs-on: nix
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: Run Bumper
|
|
run: nix run .#workflows.bumper
|