Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/health-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
git pull
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Push changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-view.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
git config --local user.name "GitHub Action"
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issues-ace-team.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
git config --local user.name "GitHub Action"
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-view.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
git config --local user.name "GitHub Action"
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/transitioned-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
git config --local user.name "GitHub Action"
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validation-repo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
git pull
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Push changes
Expand All @@ -60,10 +60,10 @@ jobs:
git pull
git add --all
if [-z "$(git status --porcelain)"]; then
echo "::set-output name=push::false"
echo "push=false" >> $GITHUB_OUTPUT
else
git commit -m "Add changes" -a
echo "::set-output name=push::true"
echo "push=true" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Push changes
Expand Down