forked from woocommerce/grow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demo GitHub Actions - Delete Test Build
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: GitHub Actions - Delete Test Build | ||
|
||
on: | ||
delete: | ||
|
||
jobs: | ||
DeleteTestBuild: | ||
name: Delete Test Build | ||
runs-on: ubuntu-latest | ||
if: github.event.ref_type == 'branch' | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: trunk | ||
|
||
- name: Delete test build branch | ||
run: | | ||
BRANCH_NAME="${{ github.event.ref }}-test-build" | ||
REMOTE_BRANCH_NAME="origin/${BRANCH_NAME}" | ||
git fetch --prune --no-tags --depth=1 origin | ||
# Check if the test build branch exists. | ||
if [ -n "$(git branch --list --remote "$REMOTE_BRANCH_NAME")" ]; then | ||
AUTHOR_INFO=$(git show --no-patch --pretty=format:"%an %ae" "${REMOTE_BRANCH_NAME}") | ||
# Check if the author of the last commit is the github-actions bot account. | ||
# https://api.github.com/users/github-actions%5Bbot%5D | ||
if [[ "$AUTHOR_INFO" == 'github-actions[bot] 41898282+github-actions[bot]@users.noreply.github.com' ]]; then | ||
git push -d origin "$BRANCH_NAME" | ||
fi | ||
fi |