Skip to content

Commit

Permalink
feat(git-worklfows): Add backport-bot into workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Angi-Kinas committed Nov 7, 2023
1 parent d42c29a commit 14ea13c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Backport

on:
pull_request:
types:
- closed
- labeled

env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}

jobs:
backport:
runs-on: ubuntu-22.04
name: Backport
timeout-minutes: 5

steps:
- uses: camptocamp/backport-action@master
with:
token: ${{ secrets.GOPASS_CI_GITHUB_TOKEN }}
if: env.HAS_SECRETS == 'HAS_SECRETS'

0 comments on commit 14ea13c

Please sign in to comment.