10.6 Fix restore assets from recycle bin #20
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: "PR Checklist" | |
on: | |
pull_request_target: | |
types: [opened] | |
permissions: | |
pull-requests: write | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
env: | |
MESSAGE: | | |
### Review Checklist | |
- [ ] Target branch (`11.0` for bug fixes, others `11.x`) | |
- [ ] Tests (if it's testable code, there should be a test for it - [get help](https://pimcore.com/docs/pimcore/current/Development_Documentation/Development_Tools_and_Details/Testing/Core_Tests.html)) | |
- [ ] Docs (every functionality needs to be documented, [see here](https://github.com/pimcore/pimcore/tree/11.x/doc)) | |
- [ ] [Migration](https://pimcore.com/docs/pimcore/current/Development_Documentation/Development_Tools_and_Details/Migrations.html) incl. `install.sql` (e.g. if the database schema changes, ...) | |
- [ ] Upgrade notes (deprecations, important information, migration hints, ...) | |
- [ ] Label | |
- [ ] Milestone | |
with: | |
script: | | |
const { MESSAGE } = process.env | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `${MESSAGE}` | |
}) | |