Skip to content

Bump @typescript-eslint/parser from 6.1.0 to 6.9.0 in /postman #115

Bump @typescript-eslint/parser from 6.1.0 to 6.9.0 in /postman

Bump @typescript-eslint/parser from 6.1.0 to 6.9.0 in /postman #115

Workflow file for this run

name: Rebase All Pull Requests
on:
pull_request:
types:
- closed
jobs:
Rebase:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Rebase pull requests
run: |
repo=$GITHUB_REPOSITORY
pull_requests=$(curl -s -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/$repo/pulls?state=open" | jq -r '.[].number')
for pr in $pull_requests; do
curl -s -X PATCH -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/$repo/pulls/$pr/update-branch"
done