diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-20 12:50:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 12:50:27 +0200 |
commit | 2e912990ff63ca364a070243594b174e0ec9868b (patch) | |
tree | 56e64c9399cc1b8b42f22be23876caf9c79bba2e /.github | |
parent | ebc80dba789415cedda003baee3af391531860b2 (diff) | |
download | nextcloud-server-2e912990ff63ca364a070243594b174e0ec9868b.tar.gz nextcloud-server-2e912990ff63ca364a070243594b174e0ec9868b.zip |
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
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/php.yml | 17 |
1 files changed, 17 insertions, 0 deletions
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 + |