mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-26 21:43:53 +00:00
Manually add comment, lock and redirect user.
This commit is contained in:
19
.github/workflows/debug-info-actions.yml
vendored
19
.github/workflows/debug-info-actions.yml
vendored
@@ -19,9 +19,24 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
ISSUE_BODY=$(gh issue view 8380 --json body)
|
ISSUE_BODY=$(gh issue view $NUMBER --json body)
|
||||||
if [[ $ISSUE_BODY == *".eOxNZAmyGz6CXMyf"* ]]; then
|
if [[ $ISSUE_BODY == *".eOxNZAmyGz6CXMyf"* ]]; then
|
||||||
gh issue edit "$NUMBER" --add-label "$LABELS"
|
# comment on issue
|
||||||
|
read -r -d '' REPLY << EOF
|
||||||
|
Hi there! This is an automatic reply. `Share and enjoy`
|
||||||
|
|
||||||
|
It seems your issue is about the new v2-layout that is currently in development for Firefly III.
|
||||||
|
|
||||||
|
These issues are collected in [a GitHub discussion](https://github.com/firefly-iii/firefly-iii/issues/8361).
|
||||||
|
|
||||||
|
Please note that the v2 layout is still very much in development.
|
||||||
|
|
||||||
|
Thank you for your contributions.
|
||||||
|
EOF
|
||||||
|
|
||||||
|
gh issue comment "$NUMBER" --body "$REPLY"
|
||||||
|
gh issue close "$NUMBER" --reason completed
|
||||||
|
gh issue lock "$NUMBER"
|
||||||
fi
|
fi
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
Reference in New Issue
Block a user