Skip to content

Commit

Permalink
Merge pull request #1376 from nextcloud/feat/ci/update-presets
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Dec 29, 2023
2 parents 501454a + b6aed05 commit 6aaab30
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/update_presets.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Update test presets'

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
update:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Install dart
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d # v1
- 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@v5
with:
commit-message: "chore(nextcloud_test): Update presets"
signoff: true
branch: chore/nextcloud_test/update-presets
delete-branch: true
title: "chore(nextcloud_test): Update presets"
body: ""

0 comments on commit 6aaab30

Please sign in to comment.