new test #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tasks - Update specs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- add-workflow-update-specs | |
concurrency: | |
group: "push-to-main" | |
defaults: | |
run: | |
working-directory: packages/tasks | |
jobs: | |
version_and_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# Needed to create the pull request | |
token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
run_install: true | |
- run: pnpm install | |
- run: pnpm run inference-tgi-import | |
- run: pnpm run inference-tei-import | |
- run: pnpm run inference-codegen | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Update report | |
committer: github-actions[bot] | |
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> | |
branch: update-tasks-specs-automated-pr | |
delete-branch: true | |
title: "[Bot] Update tasks specs" | |
body: | | |
Tasks specs updated by running: | |
```sh | |
pnpm run inference-tgi-import | |
pnpm run inference-tei-import | |
pnpm run inference-codegen | |
``` | |
This PR was automatically created by the [Tasks - Update specs workflow](https://github.com/huggingface/huggingface.js/blob/main/.github/update-specs.yml). | |
labels: | | |
tasks | |
specs | |
reviewers: | | |
Wauplin | |
hanouticelina |