From: Morris Jobke Date: Thu, 20 Aug 2020 10:50:27 +0000 (+0200) Subject: This is just to trigger the GitHub scheduled actions registration X-Git-Tag: v20.0.0beta1~23 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2e912990ff63ca364a070243594b174e0ec9868b;p=nextcloud-server.git This is just to trigger the GitHub scheduled actions registration It is needed for #22314 and I will revert it right away afterwards. Sorry for the trouble. See the answer in https://stackoverflow.com/questions/59560214/github-action-works-on-push-but-not-scheduled --- diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 00000000000..b5dc4d34e80 --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,17 @@ +name: PHP Composer + +on: + schedule: + - cron: '*/5 * * * *' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Validate composer.json and composer.lock + run: composer validate +