From 40dd7c979d54fa49157983ea7f0ebafd34cf6fa5 Mon Sep 17 00:00:00 2001 From: Ryan Inch Date: Thu, 14 May 2026 02:12:33 -0400 Subject: [PATCH] Add the roadmap auto commenter to this repository What: adds a workflow that calls the reusable roadmap auto commenter workflow when issues or pull requests are opened. Why: to activate the roadmap auto commenter for this repository. Note: see the reusable roadmap auto commenter commit/pull request in the .github repository for more information. https://github.com/Hubs-Foundation/.github/pull/11 --- .github/workflows/roadmap-auto-commenter.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/roadmap-auto-commenter.yml diff --git a/.github/workflows/roadmap-auto-commenter.yml b/.github/workflows/roadmap-auto-commenter.yml new file mode 100644 index 0000000..2e3a2d4 --- /dev/null +++ b/.github/workflows/roadmap-auto-commenter.yml @@ -0,0 +1,19 @@ +# When modifying this file, make sure to pass on the update to all repositories. A tool like https://github.com/gruntwork-io/git-xargs may be useful for this. + +# WARNING: This workflow is sometimes triggered by pull_request_target and so will always run automatically on pull requests made by anyone. Do not do any sort of processing of user input, such as checking out code. + +name: Roadmap Auto Commenter +on: + issues: + types: + - opened + pull_request_target: + types: + - opened + +jobs: + call_reusable_roadmap_auto_commenter: + permissions: + issues: write + pull-requests: write + uses: Hubs-Foundation/.github/.github/workflows/reusable-roadmap-auto-commenter.yml@main