From 227cf5325b42b69af9df3e5bef21f501c59b900a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 10 Apr 2026 01:46:09 +0000 Subject: [PATCH] chore: add GitHub Actions workflow to set repository topics Agent-Logs-Url: https://github.com/caid-technologies/SimCorrect/sessions/b95fb8b2-536c-41e3-aa35-4f03260a93cf Co-authored-by: deanhu0822 <86739329+deanhu0822@users.noreply.github.com> --- .github/workflows/set-topics.yml | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/set-topics.yml diff --git a/.github/workflows/set-topics.yml b/.github/workflows/set-topics.yml new file mode 100644 index 0000000..63c336f --- /dev/null +++ b/.github/workflows/set-topics.yml @@ -0,0 +1,35 @@ +name: Set Repository Topics + +on: + workflow_dispatch: + +permissions: + administration: write + +jobs: + set-topics: + runs-on: ubuntu-latest + steps: + - name: Set repository topics + uses: actions/github-script@v7 + with: + script: | + await github.rest.repos.replaceAllTopics({ + owner: context.repo.owner, + repo: context.repo.repo, + names: [ + "robotics", + "simulation", + "mujoco", + "sim-to-real", + "cad", + "python", + "robot-manipulation", + "pick-and-place", + "parametric-cad", + "robot-learning", + "geometric-fault-detection", + "sim-to-real-gap" + ] + }); + console.log("Repository topics set successfully.");