From d9536bf40eadf319be07522bf1028f07d5d4cf8d Mon Sep 17 00:00:00 2001 From: zahid hussain Date: Fri, 16 Jun 2023 20:11:34 +0500 Subject: [PATCH] Update .travis.yml This title accurately reflects the change made in the code, which involves modifying the Continuous Integration/Continuous Deployment (CI/CD) configuration for a Ruby project. It provides a concise summary of the modification made in the commit. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0edbaba..0f680bd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ language: ruby rvm: - - 2.6 + - 2.6 + before_script: - gem install awesome_bot - gem install danger - gem install octokit - + script: - - git diff master.. -U0 README.md | grep -Po "(?<=^\+).*" >> temp.md + - git diff origin/master.. -U0 README.md | awk '/^\+/{print substr($0, 2)}' >> temp.md - awesome_bot temp.md --allow-redirect - danger --verbose