Cli for Microsoft 365 release blog post v10 #1362
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Delete branch after closed pull request | |
# This workflow is triggered on all closed pull requests. | |
# However the script does not do anything it a merge was not performed. | |
on: | |
pull_request: | |
types: [closed] | |
env: | |
NO_BRANCH_DELETED_EXIT_CODE: 0 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jessfraz/branch-cleanup-action@master |