Skip to content

Commit

Permalink
try 7
Browse files Browse the repository at this point in the history
  • Loading branch information
levb committed Mar 6, 2024
1 parent e4e07bf commit d7324c8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,14 @@ jobs:
run: |
cd doc
doxygen DoxyFile.NATS.Client
git diff --quiet || echo "changes=true" >> $GITHUB_ENV
echo "--------------------------------------------------"
git diff
echo "--------------------------------------------------"
git diff --quiet || echo "CHANGES=true" >> $GITHUB_ENV
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
if: steps.update.outputs.changes == 'true'
if: steps.update.outputs.CHANGES == 'true'
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update documentation
Expand Down

0 comments on commit d7324c8

Please sign in to comment.