From 2e912990ff63ca364a070243594b174e0ec9868b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 20 Aug 2020 12:50:27 +0200 Subject: [PATCH] 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 --- .github/workflows/php.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/php.yml 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 + -- 2.39.5