aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/backport.yml
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-05-24 14:17:44 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-05-24 14:17:44 +0200
commit4bd30f5e72d585ad6c34ef96d768eb7969ec4901 (patch)
tree74d42cf56dd5fea57b8918cc75d70a6c30c490cb /.github/workflows/backport.yml
parent3cc26b15a1a99860b1c2a9c69bc434479b4627bb (diff)
downloadPrismLauncher-4bd30f5e72d585ad6c34ef96d768eb7969ec4901.tar.gz
PrismLauncher-4bd30f5e72d585ad6c34ef96d768eb7969ec4901.tar.bz2
PrismLauncher-4bd30f5e72d585ad6c34ef96d768eb7969ec4901.zip
chore: remove unused GH Workflows
Diffstat (limited to '.github/workflows/backport.yml')
-rw-r--r--.github/workflows/backport.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
deleted file mode 100644
index fa287a2c..00000000
--- a/.github/workflows/backport.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Backport PR to stable
-on:
- pull_request:
- branches: [ develop ]
- types: [ closed ]
-jobs:
- release_pull_request:
- if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'backport')
- runs-on: ubuntu-latest
- steps:
- - name: checkout
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Backport PR by cherry-pick-ing
- uses: Nathanmalnoury/gh-backport-action@master
- with:
- pr_branch: 'stable'
- github_token: ${{ secrets.GITHUB_TOKEN }}