diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-20 12:41:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 12:41:23 +0200 |
commit | e4371725f449a5545cac4f1d2d1b598092d722b5 (patch) | |
tree | 23e58626356575984438ee4a7b744aa8ab5df4b4 | |
parent | ffb132752cf46f6e4e71a2f7ee3d7be3be6548b4 (diff) | |
parent | f255f429911cb4f3bfa231d036979d9af648c370 (diff) | |
download | nextcloud-server-e4371725f449a5545cac4f1d2d1b598092d722b5.tar.gz nextcloud-server-e4371725f449a5545cac4f1d2d1b598092d722b5.zip |
Merge pull request #22325 from nextcloud/MorrisJobke-patch-1
This is just to trigger the GitHub scheduled actions registration
-rw-r--r-- | .github/workflows/php.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 00000000000..7cc0a9e1c8a --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,16 @@ +name: PHP Composer + +on: + schedule: + - cron: '* * * * *' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Validate composer.json and composer.lock + run: composer validate |