Merge remote-tracking branch 'remotes/upstream/main' into restore-files

pull/13693/head
Adam Cozzette 2 years ago
commit eee435d1bd
  1. 26
      .github/workflows/janitor.yml

@ -8,16 +8,16 @@ on:
jobs: jobs:
stale-prs: stale-prs:
- name: Close Stale Copybara PRs name: Close Stale Copybara PRs
runs-on: ubuntu-latest runs-on: ubuntu-latest
run: | run: |
set -ex set -ex
STALE_PRS=$(gh pr list --author "app/copybara-service" --limit 500 \ STALE_PRS=$(gh pr list --author "app/copybara-service" --limit 500 \
--json "number" --search "updated:<=$(date --date="-7 day" +%F)" \ --json "number" --search "updated:<=$(date --date="-7 day" +%F)" \
| jq ".[].number") | jq ".[].number")
for pr in $(STALE_PRS); do for pr in $(STALE_PRS); do
echo "Closing #$pr..." echo "Closing #$pr..."
gh pr close --comment "Auto-closing Copybara pull request" --delete-branch "$pr" gh pr close --comment "Auto-closing Copybara pull request" --delete-branch "$pr"
done done
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save