Update test presets #274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Update test presets' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
update: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dart | |
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 # v1 | |
with: | |
sdk: 3.5 | |
- 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@6cd32fd93684475c31847837f87bb135d40a2b79 # v7 | |
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: "Make sure to update the supported apps table if a new preset is added!" |