Skip to content

Commit

Permalink
[github actions] Add the same backporting job than in pylint (#1918)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Dec 26, 2022
1 parent 82a0d51 commit 8dd0adc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Backport
on:
pull_request_target:
types:
- closed
- labeled

permissions:
pull-requests: write
contents: write

jobs:
backport:
name: Backport
runs-on: ubuntu-latest
# Only react to merged PRs for security reasons.
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
if: >
github.event.pull_request.merged && (
github.event.action == 'closed'
|| (
github.event.action == 'labeled'
&& contains(github.event.label.name, 'backport')
)
)
steps:
- uses: tibdex/backport@2e217641d82d02ba0603f46b1aeedefb258890ac # v2.0.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8dd0adc

Please sign in to comment.