Skip to content

Commit

Permalink
[DOC] Skip tests if only NEWS.md changed
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Dec 20, 2021
1 parent 7700e9a commit 26c9ef6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/bundled_gems.yml
Expand Up @@ -113,7 +113,12 @@ jobs:
- name: Commit
run: |
git pull --ff-only origin ${GITHUB_REF#refs/heads/}
git commit --message="Update bundled gems list at ${TODAY}"
message="Update bundled gems list at "
if [ ${{ steps.diff.outcome }} = success ]; then
git commit --message="${message}${GITHUB_SHA:0:30} [ci skip]"
else
git commit --message="${message}${TODAY}"
fi
git push origin ${GITHUB_REF#refs/heads/}
env:
EMAIL: svn-admin@ruby-lang.org
Expand Down

0 comments on commit 26c9ef6

Please sign in to comment.