meta: update dependency typescript to v5.6.3 #395
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 PRs & label conflicts | |
on: | |
push: | |
branches: | |
- main | |
# can also be used with the pull_request event | |
pull_request_target: | |
types: | |
- synchronize | |
# allow the workflow to correct any label incorrectly added or removed by a user. | |
- labeled | |
- unlabeled | |
# update the PR as soon as the auto-merge is enabled. | |
- auto_merge_enabled | |
# process the PR once they appear in the search filters | |
- ready_for_review | |
- opened | |
- reopened | |
jobs: | |
autoupdate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Sequelize Bot Token | |
id: generate-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: '${{ secrets.SEQUELIZE_BOT_APP_ID }}' | |
private-key: '${{ secrets.SEQUELIZE_BOT_PRIVATE_KEY }}' | |
- uses: sequelize/pr-auto-update-and-handle-conflicts@257ac5f68859672393e3320495164251140bd801 # 1.0.1 | |
with: | |
conflict-label: 'conflicted' | |
conflict-requires-ready-state: 'ready_for_review' | |
conflict-excluded-authors: 'bot/renovate' | |
update-pr-branches: true | |
update-requires-auto-merge: true | |
update-requires-ready-state: 'ready_for_review' | |
update-excluded-authors: 'bot/renovate' | |
update-excluded-labels: 'no-autoupdate' | |
env: | |
GITHUB_TOKEN: '${{ steps.generate-token.outputs.token }}' |