GitHub actions

This commit is contained in:
Jarred Sumner
2024-06-17 19:53:30 -07:00
parent 748209f79b
commit 9dc36adf83
2 changed files with 7 additions and 1 deletions

View File

@@ -6,6 +6,11 @@ inputs:
description: The most recent version of Bun.
required: true
type: string
token:
description: The GitHub token to use for creating a pull request.
required: true
type: string
default: ${{ github.token }}
runs:
using: composite
@@ -25,7 +30,7 @@ runs:
add-paths: |
CMakeLists.txt
LATEST
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ inputs.token }}
commit-message: Bump version to ${{ steps.bump.outputs.version }}
title: Bump to ${{ steps.bump.outputs.version }}
delete-branch: true

View File

@@ -26,3 +26,4 @@ jobs:
uses: ./.github/actions/bump
with:
version: ${{ inputs.version }}
token: ${{ github.token }}