Update ADRs #11166
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 ADRs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 */1 * * * | |
jobs: | |
create-adr-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "~1.32" | |
- run: ./.github/scripts/update-adrs.sh | |
- uses: peter-evans/create-pull-request@v4 | |
with: | |
add-paths: | | |
resources/references/adr/**/* | |
resources/references/adr/*.md | |
SUMMARY.md | |
author: shopwareBot <[email protected]> | |
committer: shopwareBot <[email protected]> | |
assignees: Isengo1989 | |
branch: adr-reference-update | |
delete-branch: true | |
title: 'Update Architecture Decision Records' | |
body: 'Mirrored from: [shopware/platform](https://github.com/shopware/platform/tree/trunk)' | |
create-code-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "~1.32" | |
- run: ./.github/scripts/update-code-guidelines.sh | |
- uses: peter-evans/create-pull-request@v4 | |
with: | |
add-paths: | | |
resources/guidelines/code/core/*.md | |
SUMMARY.md | |
author: shopwareBot <[email protected]> | |
committer: shopwareBot <[email protected]> | |
assignees: Isengo1989 | |
branch: code-guidelines-update | |
delete-branch: true | |
title: 'Update code guidelines from platform' | |
body: 'Mirrored from: [shopware/platform](https://github.com/shopware/platform/tree/trunk)' |