feat: test #3
Workflow file for this run
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
name: Clear Branch | |
on: | |
schedule: | |
- cron: '0 8 * * *' # Runs every day at 0:00 Beijing Time (8:00 UTC) | |
push: | |
branches: | |
- feature-ci | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: "Why trigger?" | |
required: true | |
type: string | |
jobs: | |
clear_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: List all branches | |
run: | | |
git fetch --all | |
current_branch=$(git rev-parse --abbrev-ref HEAD) | |
protected_branches=$(gh api /repos/${{ github.repository }}/branches --paginate --jq '.[] | select(.protected == true) | .name' | tr '\n' ' ') | |
echo "All protected branch: ${protected_branches}" | |
for branch in $(git branch -r | sed 's/origin\///'|grep -v origin); do | |
if [[ " ${protected_branches[@]} " =~ " ${branch} " ]]; then | |
echo "Skipping protected branch: $branch" | |
continue | |
fi | |
if [[ "$branch" == "$current_branch" ]]; then | |
echo "Skipping current branch: $branch" | |
continue | |
fi | |
# Skip branches with submitted PR | |
last_commit_date=$(git log -1 --format=%ci origin/$branch) | |
if [[ $(date -d "$last_commit_date" +%s) -lt $(date -d "1 month ago" +%s) ]]; then | |
if ! gh pr list --head $branch --repo https://github.com//${{ github.repository }} | grep $branch; then | |
echo "Deleting branch: $branch" | |
git push origin --delete $branch | |
fi | |
fi | |
done | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |