chore(deps): update dependency @rushstack/eslint-patch to v1.5.1 #304
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: Remove a Deployment | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
with: | |
ref: deployment | |
- run: git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
- run: git config --global user.name "github-actions[bot]" | |
- run: rm -f staging/pr-${{ github.event.number }}.yaml | |
- run: git add . | |
- run: git commit -m "Removed the deployment for PR ${{ '#' }}${{ github.event.number }}" | |
- run: git push |