Skip to content

Commit

Permalink
cicd: add action for closing issue when merged into staging (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma authored Apr 2, 2024
1 parent 20bf703 commit 2464958
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/close_issue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Close issues related to a merged pull request based on staging branch.

on:
pull_request:
types: [closed]
branches:
- staging

jobs:
closeIssueOnPrMergeTrigger:
runs-on: ubuntu-latest

steps:
- name: Closes issues related to a merged pull request.
uses: ldez/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2464958

Please sign in to comment.