Skip to content

Commit

Permalink
fix: Synchronize actions never create Pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
AChep committed Jan 6, 2024
1 parent 5e7cb15 commit c3e11fc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_gpm_passkeys_priv_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
has_changes=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)
echo "$has_changes"
echo "{HAS_CHANGES}={$has_changes}" >> "$GITHUB_OUTPUT"
echo "HAS_CHANGES=$has_changes" >> "$GITHUB_OUTPUT"
- name: Commit and push changes
uses: devops-infra/action-commit-push@v0.9.2
if: ${{ startsWith(steps.check-changes.outputs.HAS_CHANGES, 'true') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_justdeleteme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
has_changes=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)
echo "$has_changes"
echo "{HAS_CHANGES}={$has_changes}" >> "$GITHUB_OUTPUT"
echo "HAS_CHANGES=$has_changes" >> "$GITHUB_OUTPUT"
- name: Commit and push changes
uses: devops-infra/action-commit-push@v0.9.2
if: ${{ startsWith(steps.check-changes.outputs.HAS_CHANGES, 'true') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_justgetmydata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
has_changes=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)
echo "$has_changes"
echo "{HAS_CHANGES}={$has_changes}" >> "$GITHUB_OUTPUT"
echo "HAS_CHANGES=$has_changes" >> "$GITHUB_OUTPUT"
- name: Commit and push changes
uses: devops-infra/action-commit-push@v0.9.2
if: ${{ startsWith(steps.check-changes.outputs.HAS_CHANGES, 'true') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_passkeys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
has_changes=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)
echo "$has_changes"
echo "{HAS_CHANGES}={$has_changes}" >> "$GITHUB_OUTPUT"
echo "HAS_CHANGES=$has_changes" >> "$GITHUB_OUTPUT"
- name: Commit and push changes
uses: devops-infra/action-commit-push@v0.9.2
if: ${{ startsWith(steps.check-changes.outputs.HAS_CHANGES, 'true') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_tld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
has_changes=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)
echo "$has_changes"
echo "{HAS_CHANGES}={$has_changes}" >> "$GITHUB_OUTPUT"
echo "HAS_CHANGES=$has_changes" >> "$GITHUB_OUTPUT"
- name: Commit and push changes
uses: devops-infra/action-commit-push@v0.9.2
if: ${{ startsWith(steps.check-changes.outputs.HAS_CHANGES, 'true') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_twofactorauth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
has_changes=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)
echo "$has_changes"
echo "{HAS_CHANGES}={$has_changes}" >> "$GITHUB_OUTPUT"
echo "HAS_CHANGES=$has_changes" >> "$GITHUB_OUTPUT"
- name: Commit and push changes
uses: devops-infra/action-commit-push@v0.9.2
if: ${{ startsWith(steps.check-changes.outputs.HAS_CHANGES, 'true') }}
Expand Down

0 comments on commit c3e11fc

Please sign in to comment.