Skip to content

Commit

Permalink
update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasgil-arranz committed Aug 1, 2024
1 parent a207e98 commit 32194fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/copy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
id: changes
run: |
if git diff --quiet; then
echo "::set-output name=changes::false"
echo "changes=false" >> $GITHUB_OUTPUT
else
echo "::set-output name=changes::true"
echo "changes=true" >> $GITHUB_OUTPUT
fi
- name: Create and push changes to new branch
if: steps.changes.outputs.changes == 'true'
run: |
git checkout -b crowdin-copy-changes
git checkout -b crowdin-copy-changes || git checkout crowdin-copy-changes
git add .
git commit -m "chore: Copy ignored files using crowdin:copy"
git push --set-upstream origin crowdin-copy-changes
Expand Down

0 comments on commit 32194fd

Please sign in to comment.