chore(deps): update dependency @types/node to v16.18.119 (#3533) #1996
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: Auto update open PRs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
autoupdate: | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup GitHub Token | |
id: setup-github-token | |
uses: smartcontractkit/.github/actions/setup-github-token@9e7cc0779934cae4a9028b8588c9adb64d8ce68c # [email protected] | |
with: | |
aws-role-arn: ${{ secrets.AWS_ROLE_ARN_FOR_AUTOREBASE_TOKEN }} | |
aws-lambda-url: ${{ secrets.GATI_LAMBDA_DATA_FEEDS_URL }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
aws-role-duration-seconds: '1800' # this is optional and defaults to 900 | |
- name: Automatically update PR | |
uses: adRise/update-pr-branch@3576c22e28fb6f665417bfe3a83f9da7ca5363e2 # v0.9.1 | |
with: | |
token: ${{ steps.setup-github-token.outputs.access-token }} | |
base: 'main' | |
required_approval_count: 1 | |
require_passed_checks: false | |
require_auto_merge_enabled: false |