Skip to content
Merged
Show file tree
Hide file tree
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
13 changes: 0 additions & 13 deletions .github/workflows/_static-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,3 @@ jobs:

- name: Run Prettier
run: npm run prettier

build:
name: Build site
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Setup
uses: ./.github/actions/setup

- name: Build site
run: npm run build
14 changes: 2 additions & 12 deletions .github/workflows/update-toolhive-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,9 @@ jobs:
echo "changed=true" >> $GITHUB_OUTPUT
fi

- name: Create branch, commit, and push
if: steps.git-diff.outputs.changed == 'true'
run: |
BRANCH=update-toolhive-reference-${VERSION}
git checkout -b "$BRANCH"
git commit -am "Update ToolHive reference docs for ${VERSION}"
git push origin "$BRANCH"
git checkout main
env:
VERSION: ${{ steps.imports.outputs.version }}

- name: Create Pull Request
if: steps.git-diff.outputs.changed == 'true'
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
with:
branch: update-toolhive-reference-${{ steps.imports.outputs.version }}
title: |
Expand All @@ -62,3 +51,4 @@ jobs:
commit-message: |
Update ToolHive reference docs for ${{ steps.imports.outputs.version }}
delete-branch: true
sign-commits: true
Loading