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
2 changes: 1 addition & 1 deletion .github/workflows/_schedule_image_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
tags: |
type=pep440,pattern={{raw}},suffix=${{ env.SUFFIX }}
type=schedule,pattern=main,suffix=${{ env.SUFFIX }}
type=ref,event=workflow_dispatch,suffix=${{ env.SUFFIX }}
type=raw,event=workflow_dispatch,suffix=${{ env.SUFFIX }}
flavor:
latest=false

Expand Down
20 changes: 6 additions & 14 deletions .github/workflows/bot_pr_create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ permissions:
pull-requests: write

jobs:
commit-update:
name: format PR body
pr-create:
permissions:
contents: read
pull-requests: write
name: PR create action
runs-on: ubuntu-latest
steps:
- name: Get vLLM version
Expand Down Expand Up @@ -85,24 +88,13 @@ jobs:
echo "No changes needed"
fi

pr-label:
name: Pull Request Labeler
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Label the PR
uses: actions/labeler@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
sync-labels: true

pr-reminder:
name: PR Reminder Comment Bot
runs-on: ubuntu-latest
steps:
- name: Remind to run full CI on PR
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
Expand All @@ -118,4 +110,4 @@ jobs:
'If CI fails, you can run linting and testing checks locally according [Contributing](https://vllm-ascend.readthedocs.io/zh-cn/latest/developer_guide/contribution/index.html) and [Testing](https://vllm-ascend.readthedocs.io/zh-cn/latest/developer_guide/contribution/testing.html).'
})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/schedule_image_build_and_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name: Image Build and Push
on:
schedule:
- cron: '0 */2 * * *'
- cron: '0 */4 * * *'
push:
tags:
- 'v*'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule_release_code_and_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name: Release Code and Wheel

on:
schedule:
- cron: '0 */2 * * *'
- cron: '0 */4 * * *'
push:
tags:
- 'v*'
Expand Down