docs: add rsgb as a contributor for code #320
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: Destroy Fly PR Preview | |
| on: | |
| pull_request_target: | |
| types: | |
| - unlabeled | |
| - closed | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| jobs: | |
| label_removed: | |
| if: | | |
| (github.event.action == 'unlabeled' && github.event.label.name == 'Review allow-preview ✅') || | |
| (github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'Review allow-preview ✅')) | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| concurrency: | |
| group: pr-${{ github.event.number }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Destroy fly.io preview app | |
| id: destroy | |
| uses: ./.github/actions/destroy-fly-preview-app | |
| with: | |
| name: community-platform-pr-${{ github.event.number }} |