Skip to content

Update

Update #1504

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Update"
on: # yamllint disable-line rule:truthy
schedule:
- cron: "0 9 * * *"
jobs:
schema:
name: "Schema"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.4"
steps:
- name: "Checkout"
uses: "actions/checkout@v4.1.3"
- name: "Set up PHP"
uses: "shivammathur/setup-php@2.30.4"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: "Download schema"
run: "wget --output-document=resource/schema.json https://getcomposer.org/schema.json"
- name: "Show diff"
run: "git diff resource/schema.json"
- name: "Laxify schema"
run: "php bin/laxify-schema.php"
- name: "Open pull request updating schema"
uses: "gr2m/create-or-update-pull-request-action@v1"
with:
author: "ergebnis-bot <bot@ergebn.is>"
branch: "feature/schema"
body: |
This PR
- [x] updates `schema.json`
commit-message: "Enhancement: Update schema.json"
path: "resource/"
title: "Enhancement: Update `schema.json`"
env:
GITHUB_TOKEN: "${{ secrets.ERGEBNIS_BOT_TOKEN }}"