summaryrefslogtreecommitdiff
path: root/.github/workflows/post_push.yml
AgeCommit message (Collapse)Author
2025-12-02Bump actions/checkout from 6.0.0 to 6.0.1dependabot[bot]
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6...v6.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2025-11-27Bump actions/checkout from 5.0.1 to 6.0.0dependabot[bot]
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.1 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v5.0.1...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2025-11-17Bump actions/checkout from 5.0.0 to 5.0.1dependabot[bot]
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 5.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v5...v5.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
2025-10-08post_push.yml: Rename commit-mail.rb backTakashi Kokubun
to commit-email.rb. I didn't realize I dropped a letter when I moved it. It wasn't really intended, so I change it back.
2025-10-08post_push.yml: Specify the full path of sendmailTakashi Kokubun
2025-10-08post_push.yml: Migrate commit-email.rb to post_push (#14779)Takashi Kokubun
from post-receive.sh as of https://github.com/ruby/git.ruby-lang.org/commit/8d24ac65b5aeb44f7a3212410d6911be621223d4.
2025-10-08post_push.yml: Write the SSH key more securelyTakashi Kokubun
Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
2025-10-08push_push.yml: Suppress progress of requestsTakashi Kokubun
which also disables some error messages, but --fail-with-body -w '%{http_code}' seems to show everything we need anyway.
2025-10-08post_push.yml: Fix an invalid YAML syntaxTakashi Kokubun
2025-10-08post_push.yml: Migrate fetch_changesetsTakashi Kokubun
from post-receive.sh
2025-10-07post_push.yml: Simplify the overall workflowTakashi Kokubun
2025-10-07post_push.yml: Skip .github/actions/setup/directoriesTakashi Kokubun
These scripts are made to be fairly portable, so it shouldn't need all these steps to make them work.
2025-10-07Carve out a workflow for post-push hooks (#14768)Takashi Kokubun
from check_misc.yml. These steps originally came from git.ruby-lang.org/ruby.git's post-receive hooks. Because it handles a different set of events from what the original check_misc.yml does, it probably allows them to be simpler if they are separated.