diff options
| author | 2023-08-13 12:28:04 +0800 | |
|---|---|---|
| committer | 2023-08-13 12:28:04 +0800 | |
| commit | 5f3216a3005fbfe1281048f851468c560f53c60f (patch) | |
| tree | f4aaf4aec7b344c65d28c2fd6cd1b44075f9374a /.github | |
| parent | 697e9157669e467f41c5cd4b542aee861b320712 (diff) | |
| parent | 364eaa43b77b04e029358da1c9539337b9725786 (diff) | |
| download | infini-5f3216a3005fbfe1281048f851468c560f53c60f.tar.gz infini-5f3216a3005fbfe1281048f851468c560f53c60f.zip | |
Merge branch 'master' of https://github.com/HydroRoll-Team/HydroRollCore
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/maintain-one-comment.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/maintain-one-comment.yml b/.github/workflows/maintain-one-comment.yml new file mode 100644 index 00000000..beed0cee --- /dev/null +++ b/.github/workflows/maintain-one-comment.yml @@ -0,0 +1,22 @@ +name: Maintain One Comment + +on: + issues: + types: [opened, edited] + issue_comment: + types: [created, edited] + pull_request: + types: [assigned, opened, synchronize, edited] + +jobs: + comment: + runs-on: ubuntu-latest + steps: + - name: maintain-comment + uses: actions-cool/maintain-one-comment@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + body: | + Hi 😀 + emojis: '+1, laugh' + body-include: '<!-- Created by actions-cool/maintain-one-comment -->' |
