fix(github): open automated PRs as (@)msfjarvis

This saves a close-reopen round trip since human created PRs automatically trigger checks
This commit is contained in:
Harsh Shandilya 2022-09-05 13:41:19 +05:30
parent 862bc59f54
commit 9fd8d012c6
No known key found for this signature in database
2 changed files with 4 additions and 8 deletions

View file

@ -42,14 +42,12 @@ jobs:
commit-message: "strings: sync with crowdin"
labels: A-localisation, P-low, S-waiting-on-review
title: Sync localisations from Crowdin
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PSL_UPDATE_TOKEN }}
- name: Close, re-open and enable squash merge for PR
- name: Enable automerge for PR
if: "${{ steps.cpr.outputs.pull-request-operation == 'created' }}"
shell: bash
run: |
gh pr close "${PR_URL}"
gh pr reopen "${PR_URL}"
gh pr merge --squash --auto "${PR_URL}"
env:
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }}

View file

@ -45,14 +45,12 @@ jobs:
commit-message: "autofill-parser: update publicsuffixes file"
labels: A-PSL
title: Update Public Suffix List data
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PSL_UPDATE_TOKEN }}
- name: Close, re-open and enable squash merge for PR
- name: Enable automerge for PR
if: "${{ steps.cpr.outputs.pull-request-operation == 'created' }}"
shell: bash
run: |
gh pr close "${PR_URL}"
gh pr reopen "${PR_URL}"
gh pr merge --squash --auto "${PR_URL}"
env:
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }}