Daily Currency update #456
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: Daily Currency spec update | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '55 17 * * *' | |
jobs: | |
update-specs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: composer install | |
- name: Run standard update command | |
run: composer update-spec-currency | |
- name: Run CSFixer | |
run: composer cs:fix | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: Automatic Currency spec update from upstream changes | |
delete-branch: true | |
title: 'Automatic Currency spec update' | |
branch: update-spec/currency | |
body: | | |
This PR makes sure the content of this package is updated with upstream changes in the specs. | |
labels: | | |
spec-update | |
automated pr | |
reviewers: prinsfrank |