We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12038f1 commit 55df8dcCopy full SHA for 55df8dc
1 file changed
.github/workflows/check_misc.yml
@@ -52,6 +52,16 @@ jobs:
52
# Skip 'push' events because post_push.yml fixes them on push
53
if: ${{ github.repository == 'ruby/ruby' && startsWith(github.event_name, 'pull') }}
54
55
+ - name: Check if date in man pages is up-to-date
56
+ run: |
57
+ git fetch origin --depth=1 "${GITHUB_OLD_SHA}"
58
+ git diff --exit-code --name-only "${GITHUB_OLD_SHA}" HEAD -- man ||
59
+ make V=1 GIT=git BASERUBY=ruby update-man-date
60
+ git diff --color --no-ext-diff --ignore-submodules --exit-code -- man
61
+ env:
62
+ GITHUB_OLD_SHA: ${{ github.event.pull_request.base.sha }}
63
+ if: ${{ startsWith(github.event_name, 'pull') }}
64
+
65
- name: Check for bash specific substitution in configure.ac
66
run: |
67
git grep -n '\${[A-Za-z_0-9]*/' -- configure.ac && exit 1 || :
0 commit comments