Skip to content

Bump rexml from 3.3.6 to 3.3.9 #378

Bump rexml from 3.3.6 to 3.3.9

Bump rexml from 3.3.6 to 3.3.9 #378

name: Selectively delete feature branch after merge to development
# Only run the workflow when a PR that targets development is closed
on:
pull_request:
types:
- closed
branches:
- 'development'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
merge_job:
# this job will only run if the PR has been merged
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Delete merged branch
# from the github actions marketplace repo here: https://github.com/pabio/delete-merged-action
uses: koj-co/delete-merged-action@master
with:
# do not delete main, development branches
branches: "!main, !development, *"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"