Add github workflow to update ranges #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update ISBN ranges | |
on: | |
schedule: | |
- cron: 0 0 10 * * # Run at 00:00 on the 10th of each month | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- uses: "ramsey/composer-install@v1" | |
with: | |
dependency-versions: "highest" | |
- name: Update ISBN ranges | |
run: composer update-ranges | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.PAT }} | |
base: main | |
commit-message: "feat: update ISBN ranges" | |
title: ISBN ranges automatic update | |
body: | | |
- ISBN ranges update | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
branch: update-ranges |