Skip to content

chore: bumpgen workflow fixes #12

chore: bumpgen workflow fixes

chore: bumpgen workflow fixes #12

Workflow file for this run

name: "Bumpgen (core)"
on:
pull_request:
types:
- opened
- labeled
permissions:
pull-requests: read
jobs:
main:
name: Run Bumpgen
runs-on: ubuntu-latest
# Need to run on all commits on PRs opened by dependabot except those committed by bumpgen
# This might not work
if: ${{ github.actor == 'dependabot[bot]' || contains( github.event.pull_request.labels.*.name, 'run bumpgen') }}
steps:
- name: Print github obj
run: echo ${{ toJson(github) }}
- uses: actions/checkout@v4
- name: Setup
uses: ./tooling/github/setup
- name: Bumpgen
uses: ./
with:
path: "./packages/bumpgen-core/"
llm_key: ${{ secrets.LLM_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}