Skip to content

Commit

Permalink
ci: add comment-on-pr (autowarefoundation#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
shmpwk committed Apr 8, 2024
1 parent 6122169 commit a60a7ee
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/comment-on-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: comment-on-pr

on:
pull_request:
types:
- opened
branches:
- beta/v0.[0-9]+.[0-9]+.[0-9]+

jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Create comments
run: |
cat << 'EOF' > comments
### betaブランチへマージする際のガイドライン
通常は`Squash and merge`を使用してください。
ただし、cherry-pickで複数の変更を取り込むときには、変更履歴を残すために`Create a merge commit`を使用してください。
### Merging guidelines for the beta branch
Please use `Squash and merge` as the default.
However, when incorporating multiple changes with cherry-pick, use a `Create a merge commit` to preserve the changes in the history.
EOF
- name: Post comments
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
URL: ${{ github.event.pull_request.html_url }}
run: gh pr comment -F ./comments "${URL}"

0 comments on commit a60a7ee

Please sign in to comment.