Skip to content

Commit 2b7b196

Browse files
authored
Create pull-request.yml
Signed-off-by: Xinwei Xiong <[email protected]>
1 parent 5c3dcdf commit 2b7b196

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/pull-request.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Update ASF APIs
2+
on:
3+
push:
4+
schedule:
5+
- cron: '0 2 * * *'
6+
workflow_dispatch:
7+
8+
jobs:
9+
update-asf:
10+
name: Update ASF APIs
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Open Source
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Set up system wide dependencies
19+
run: |
20+
echo "xxxx" >> README.md
21+
22+
- name: Create PR
23+
uses: peter-evans/create-pull-request@v5
24+
with:
25+
title: "Update ASF APIs"
26+
body: "xxxx"
27+
branch: "asf-auto-updates"
28+
author: "LocalStack Bot <[email protected]>"
29+
committer: "LocalStack Bot <[email protected]>"
30+
commit-message: "update generated ASF APIs to latest version"
31+
labels: "area: asf, area: dependencies, semver: patch"
32+
token: ${{ secrets.BOT_GITHUB_TOKEN }}
33+
reviewers: openimbot

0 commit comments

Comments
 (0)