diff options
| author | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-06 16:18:26 -0700 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2025-10-06 16:18:30 -0700 |
| commit | b1e672bb4840d50b90031046d92f787d060a358a (patch) | |
| tree | bde9d46fffde8be784a55348083071a2890a9d75 | |
| parent | 8c0fc05832111055c5f01014c0b831fc9f97e4f3 (diff) | |
sync_default_gems.yml: Remove client_payload references
Now that repository_dispatch is gone, we don't need them either.
| -rw-r--r-- | .github/workflows/sync_default_gems.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/sync_default_gems.yml b/.github/workflows/sync_default_gems.yml index edbb4399d4..bd5b30b861 100644 --- a/.github/workflows/sync_default_gems.yml +++ b/.github/workflows/sync_default_gems.yml @@ -46,9 +46,9 @@ jobs: echo update=true >> $GITHUB_OUTPUT fi env: - gem_name: ${{ github.event.client_payload.gem || github.event.inputs.gem }} - gem_before: ${{ github.event.client_payload.before || github.event.inputs.before }} - gem_after: ${{ github.event.client_payload.after || github.event.inputs.after }} + gem_name: ${{ github.event.inputs.gem }} + gem_before: ${{ github.event.inputs.before }} + gem_after: ${{ github.event.inputs.after }} EMAIL: svn-admin@ruby-lang.org GIT_AUTHOR_NAME: git GIT_COMMITTER_NAME: git |
