Fix deploy workflow concurrency #133
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: Clean up PR | |
on: | |
pull_request: | |
types: [closed] | |
# use pr number for group instead of github.ref because ref will be main branch when the PR closes which is not a unique group for the PR | |
concurrency: | |
group: ${{ github.workflow }}-pr-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
clean-up-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install Dependencies | |
run: pnpm install | |
env: | |
HUSKY: 0 | |
- name: Remove staging stack | |
run: pnpm sst remove --stage staging-${{ github.event.pull_request.number }} | |
env: | |
CI: false | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
- name: Deactivate deployment | |
uses: strumwolf/[email protected] | |
with: | |
environment: staging-${{ github.event.pull_request.number }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
onlyDeactivateDeployments: true |