forked from Significant-Gravitas/AutoGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove cassettes auto commit (Significant-Gravitas#4432)
- Loading branch information
1 parent
acfd966
commit 6c45fcd
Showing
1 changed file
with
0 additions
and
46 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 |
---|---|---|
|
@@ -93,49 +93,3 @@ jobs: | |
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
|
||
- name: Stage Files and Check for New Cassettes | ||
id: stage_files_and_check | ||
run: | | ||
find tests -type f -name '*.yaml' -print0 | xargs -0 git add | ||
# Check for new cassettes added in PR after the commit | ||
NEW_CASSETTES_ADDED_IN_PR=$(git diff --name-only $(git merge-base ${{ github.event.pull_request.base.sha }} HEAD)..HEAD -- 'tests/**/cassettes/**/*.yaml' | wc -l) | ||
if [[ "$NEW_CASSETTES_ADDED_IN_PR" -gt 0 ]] | ||
then | ||
echo "NEW_CASSETTES_ADDED_IN_PR=true" >> $GITHUB_ENV | ||
else | ||
echo "NEW_CASSETTES_ADDED_IN_PR=false" >> $GITHUB_ENV | ||
fi | ||
- name: Beat new challenges | ||
if: ${{ env.NEW_CASSETTES_ADDED_IN_PR}} | ||
run: | | ||
echo "This step will run the challenges soon." | ||
- name: Commit, Config, and Push | ||
id: commit_and_push | ||
run: | | ||
git diff --cached --quiet tests && echo "No changes to commit" && exit 0 | ||
find tests -type f -name '*.yaml' -print0 | xargs -0 git add | ||
echo '${{ secrets.PAT_REVIEW }}' | gh auth login --with-token | ||
gh repo set-default ${{ github.repository }} | ||
gh pr checkout ${{ github.event.pull_request.number }} | ||
git config --global user.name "Auto-GPT-Bot" | ||
git config --global user.email "[email protected]" | ||
git commit -m "Add new cassettes" | ||
git push origin ${{ github.head_ref }} | ||
TIMESTAMP_COMMIT=$(date +%Y%m%d%H%M%S) # generate a timestamp | ||
echo "TIMESTAMP_COMMIT=$TIMESTAMP_COMMIT" >> $GITHUB_ENV | ||
- name: Inform of auto commit. | ||
if: ${{ env.TIMESTAMP_COMMIT != null }} | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
message: | | ||
We committed some changes to this branch, please run | ||
``` | ||
git fetch | ||
git rebase origin/${{ github.head_ref }} | ||
``` | ||
before pushing more changes to the remote. |