mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-21 03:06:08 +02:00
15 lines
315 B
YAML
15 lines
315 B
YAML
name: PHP Version Audit
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened ]
|
|
schedule:
|
|
- cron: '0 0 16 * *' # run arbitrarily once a month
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
php-version-audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: ./php-version-audit.sh
|