-
-
Notifications
You must be signed in to change notification settings - Fork 1k
56 lines (50 loc) · 2.54 KB
/
closing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright © Michal Čihař <michal@weblate.org>
#
# SPDX-License-Identifier: CC0-1.0
# This file is maintained in https://github.com/WeblateOrg/meta/
name: Issue closed
on:
issues:
types: [closed]
permissions:
contents: read
jobs:
issueClosed:
permissions:
issues: write # for peter-evans/create-or-update-comment to create or update comment
pull-requests: write # for peter-evans/create-or-update-comment to create or update comment
runs-on: ubuntu-22.04
steps:
- name: Add closed question comment
uses: peter-evans/create-or-update-comment@v4
if: |
github.actor != 'renovate[bot]' &&
github.event.issue.state_reason == 'completed' &&
(contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'duplicate') && ! contains(github.event.issue.labels.*.name, 'wontfix')) || join(github.event.issue.labels.*.name) == ''
with:
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
The issue you have reported is now resolved. If you don’t feel it’s right, please follow its labels to get a clue for further steps.
* In case you see a similar problem, please open a separate issue.
* If you are happy with the outcome, don’t hesitate to support Weblate by making a [donation](https://weblate.org/donate/).
- name: Add closed issue comment
uses: peter-evans/create-or-update-comment@v4
if: |
github.actor != 'renovate[bot]' &&
github.event.issue.state_reason == 'completed' &&
! contains(github.event.issue.labels.*.name, 'invalid') &&
! contains(github.event.issue.labels.*.name, 'question') &&
! contains(github.event.issue.labels.*.name, 'wontfix') &&
! contains(github.event.issue.labels.*.name, 'duplicate') &&
! contains(github.event.issue.labels.*.name, 'undecided') &&
! contains(github.event.issue.labels.*.name, 'needinfo') &&
join(github.event.issue.labels.*.name) != ''
with:
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Thank you for your report; the issue you have reported has just been fixed.
* In case you see a problem with the fix, please comment on this issue.
* In case you see a similar problem, please open a separate issue.
* If you are happy with the outcome, don’t hesitate to support Weblate by making a [donation](https://weblate.org/donate/).