Skip to content

build(deps-dev): bump vite from 4.5.1 to 4.5.2 (#1330) #1298

build(deps-dev): bump vite from 4.5.1 to 4.5.2 (#1330)

build(deps-dev): bump vite from 4.5.1 to 4.5.2 (#1330) #1298

# name: Close Old Issues
# on:
# schedule:
# - cron: "0 0 * * *"
# jobs:
# close-issues:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v3
# - name: Close Old Issues
# run: |
# open_issues=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
# "https://api.github.com/repos/${{ github.repository }}/issues?state=open" \
# | jq -r '.[] | .number')
# for issue in $open_issues; do
# # Get the last updated timestamp of the issue
# last_updated=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
# "https://api.github.com/repos/${{ github.repository }}/issues/$issue" \
# | jq -r '.updated_at')
# days_since_update=$(( ( $(date +%s) - $(date -d "$last_updated" +%s) ) / 86400 ))
# if [ $days_since_update -gt 7 ]; then # Modify the condition to check if days_since_update is greater than 7
# curl -s -X PATCH -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
# -H "Accept: application/vnd.github.v3+json" \
# -d '{"state":"closed"}' \
# "https://api.github.com/repos/${{ github.repository }}/issues/$issue"
# fi
# done