mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
20 lines
686 B
YAML
20 lines
686 B
YAML
name: GDevelop Issues automatic workflow
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
jobs:
|
|
autocomment:
|
|
runs-on: ubuntu-latest
|
|
if: contains(github.event.issue.body, 'The node to be removed is not a child of this node')
|
|
steps:
|
|
- name: Autocomment indications on bug if it looks like #3453
|
|
uses: peter-evans/create-or-update-comment@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
issue-number: ${{ github.event.issue.number }}
|
|
body: |
|
|
Hi @${{ github.actor }}!
|
|
Thank you for taking the time to open an issue.
|
|
|
|
The solved issue #3453 mentioned a similar error, maybe it could help fix this new issue.
|