Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace deprecated command with environment file #150

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/health-dashboard.yml
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
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
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
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
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
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