-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: updated the logic of the workflow
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
- 'adyen_controllers_changes/**' | ||
|
||
jobs: | ||
setup-the-cartridge: | ||
commit-the-cartridge: | ||
if: ${{ github.actor != 'renovate[bot]' || github.actor != 'lgtm-com[bot]' }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
@@ -47,7 +47,9 @@ jobs: | |
- name: Commit changes | ||
if: success() | ||
run: | | ||
cd adyen-salesforce-commerce-cloud | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
git add build_output.txt | ||
git commit -m "chore: Commiting the built /cartridge folder" | ||
git commit -m "chore: Committing the built /cartridge folder" | ||
git push origin HEAD:${{ github.head_ref }} |