Allow projects to specify which user id to pass to drush for login. #96
Workflow file for this run
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: Backport merged pull request | |
on: # yamllint disable-line rule:truthy | |
pull_request_target: | |
types: [closed] | |
issue_comment: | |
types: [created] | |
permissions: | |
contents: write # Allow workflow to comment. | |
pull-requests: write # Allow workflow to create pull requests. | |
jobs: | |
backport: | |
name: Backport pull request | |
runs-on: ubuntu-latest | |
# Only run when pull request is merged | |
# or when a comment containing `/backport` is created by someone other than the | |
# https://github.com/backport-action bot user (user id: 97796249). Note that if you use your | |
# own PAT as `github_token`, that you should replace this id with yours. | |
if: > | |
( | |
github.event_name == 'pull_request_target' && | |
github.event.pull_request.merged | |
) || ( | |
github.event_name == 'issue_comment' && | |
github.event.issue.pull_request && | |
github.event.comment.user.id != 97796249 && | |
contains(github.event.comment.body, '/backport') | |
) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create backport pull requests | |
uses: korthout/backport-action@v1 |