-
Notifications
You must be signed in to change notification settings - Fork 53
41 lines (38 loc) · 1.07 KB
/
monorepo_pin_update.yaml
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: Update the monorepo pin commit
on:
schedule:
- cron: '30 5 */14 * *'
workflow_dispatch:
jobs:
monorepo-pin:
name: Update the monorepo pinned commit
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@stable
- name: Update Monorepo Commit
run: just update-monorepo
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update Monorepo Commit
signoff: false
branch: bot/update-monorepo
base: main
delete-branch: true
title: '[BOT] Update Monorepo'
body: |
### Description
Automated PR to update the monorepo commit.
labels: |
A-ci
C-bot
assignees: refcell
draft: false