diff options
| author | 2023-08-13 12:23:54 +0800 | |
|---|---|---|
| committer | 2023-08-13 12:23:54 +0800 | |
| commit | c30ca50aab37a86534b3dcd27c253cc79d0c8101 (patch) | |
| tree | 412f0940a0234f053efc607fee551c7c9d559902 /.github | |
| parent | 5f1c3792cae7ab78e6b85ed69f61534854b633a8 (diff) | |
| parent | 15e7e9787f721addcebc15c3fcb3ebcf72202f75 (diff) | |
| download | HydroRoll-c30ca50aab37a86534b3dcd27c253cc79d0c8101.tar.gz HydroRoll-c30ca50aab37a86534b3dcd27c253cc79d0c8101.zip | |
Merge branch 'main' of https://github.com/HydroRoll-Team/HydroRoll
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 0000000..beed0ce --- /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 -->' |
