From 3e517d14980b4e721cbc923eea062569add1c911 Mon Sep 17 00:00:00 2001
From: github-actions <github-actions@github.com>
Date: Sat, 21 Dec 2024 18:33:10 +0000
Subject: [PATCH] chore: sync files

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
 .github/pull_request_template.md     | 11 +++++++++++
 .github/workflows/comment-on-pr.yaml | 29 ++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)
 create mode 100644 .github/pull_request_template.md
 create mode 100644 .github/workflows/comment-on-pr.yaml

diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 0000000..4c4081a
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,11 @@
+## Description
+
+## How was this PR tested?
+
+## Notes for reviewers
+
+None.
+
+## Effects on system behavior
+
+None.
diff --git a/.github/workflows/comment-on-pr.yaml b/.github/workflows/comment-on-pr.yaml
new file mode 100644
index 0000000..0f2ecf5
--- /dev/null
+++ b/.github/workflows/comment-on-pr.yaml
@@ -0,0 +1,29 @@
+# This file is automatically synced from:
+# https://github.com/autowarefoundation/sync-file-templates
+# To make changes, update the source repository and follow the guidelines in its README.
+
+name: comment-on-pr
+on:
+  pull_request_target:
+
+jobs:
+  comment-on-pr:
+    runs-on: ubuntu-22.04
+    permissions:
+      pull-requests: write
+    steps:
+      - name: Check out repository
+        uses: actions/checkout@v4
+
+      - name: Initial PR comment
+        uses: marocchino/sticky-pull-request-comment@v2
+        with:
+          message: |
+            Thank you for contributing to the Autoware project!
+
+            🚧 If your pull request is in progress, [switch it to draft mode](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft).
+
+            Please ensure:
+            - You've checked our [contribution guidelines](https://autowarefoundation.github.io/autoware-documentation/main/contributing/).
+            - Your PR follows our [pull request guidelines](https://autowarefoundation.github.io/autoware-documentation/main/contributing/pull-request-guidelines/).
+            - All required CI checks pass before [marking the PR ready for review](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review).