Merge dimodi-patch-1-mcp-3034 into production #817
Workflow file for this run
This file contains hidden or 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: Pull Request To Production Closed | |
| on: | |
| pull_request: | |
| branches: [production] | |
| types: [closed] | |
| jobs: | |
| delete_production_branch: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| token: '${{ secrets.GITHUB_TOKEN }}' | |
| - name: Delete branch | |
| run: | | |
| git push origin --delete ${{github.head_ref}} |