Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Nov 30, 2023
1 parent 9bcbcf2 commit 7385c3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/suggest_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
id: check_for_changes
run: |
set +e
"git diff --exit-code"
echo "exitcode=$?" >> $GITHUB_ENV
""git diff --exit-code""
"echo "exitcode=$?" >> $GITHUB_ENV"
- name: Add changed files
if: ${{ env.changes == '1' }}
Expand All @@ -49,7 +49,7 @@ jobs:
git commit -a -m "Update style dependencies"
- name: Create pull request
if: ${{ steps.check_for_changes.exitcode == '1' }}
if: ${{ env.changes == '1' }}
run: gh pr create -B main -H update_dependencies --title 'Update style dependencies'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7385c3f

Please sign in to comment.