-
Notifications
You must be signed in to change notification settings - Fork 1.2k
41 lines (34 loc) · 1.12 KB
/
Copy pathbump-openclaw-ref.yml
File metadata and controls
41 lines (34 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Bump OpenClaw release ref
on:
workflow_dispatch: {}
permissions:
contents: write
pull-requests: write
jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Bump Dockerfile OPENCLAW_GIT_REF if needed
run: node scripts/bump-openclaw-ref.mjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: bump OPENCLAW_GIT_REF to latest release"
title: "chore: bump OPENCLAW_GIT_REF to latest OpenClaw release"
body: |
Automated update of the default OpenClaw build ref (`OPENCLAW_GIT_REF`) to the latest upstream release tag.
This keeps the Railway template stable-by-default while staying current.
branch: chore/bump-openclaw-ref
delete-branch: true
labels: |
automated
dependencies