From 16c6e643dcb40ecd38567f1ada1161b37910a663 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Fri, 20 Dec 2024 12:30:07 +0100 Subject: [PATCH] Add distinct_id input to add_mod_port workflow See https://github.com/Codex-/return-dispatch --- .github/workflows/add_mod_port.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/add_mod_port.yml b/.github/workflows/add_mod_port.yml index 36e45c7..8931151 100644 --- a/.github/workflows/add_mod_port.yml +++ b/.github/workflows/add_mod_port.yml @@ -23,6 +23,9 @@ on: file_id: description: "CurseForge file ID" required: true + distinct_id: + description: "Automatically set by the return-dispatch action (leave blank if running manually)" + required: false permissions: # To push the automated commit. @@ -35,6 +38,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Echo distinct ID ${{ github.event.inputs.distinct_id }} + run: echo ${{ github.event.inputs.distinct_id }} + - name: Checkout repository uses: actions/checkout@v4