-
Notifications
You must be signed in to change notification settings - Fork 42
33 lines (30 loc) · 1.08 KB
/
update_presets.yaml
File metadata and controls
33 lines (30 loc) · 1.08 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
name: 'Update test presets'
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
update:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: Install dart
uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c # v1
with:
sdk: 3.7
- name: Setup
run: ./tool/setup.sh
- name: Update presets
run: ./tool/generate-nextcloud-test-presets.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
with:
commit-message: "chore(nextcloud_test_presets): Update presets"
signoff: true
branch: chore/nextcloud_test_presets/update-presets
delete-branch: true
title: "chore(nextcloud_test_presets): Update presets"
body: "`git checkout chore/nextcloud_test_presets/update-presets && git commit --amend -s --no-edit && git push -f` locally to trigger the CI."