Skip to content

Bump @typescript-eslint/eslint-plugin from 6.2.1 to 6.7.2 in /postman #85

Bump @typescript-eslint/eslint-plugin from 6.2.1 to 6.7.2 in /postman

Bump @typescript-eslint/eslint-plugin from 6.2.1 to 6.7.2 in /postman #85

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