chore(deps): bump next from 13.1.2 to 13.5.4 #366
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: Heroku Review App on label | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
create-review-app: | |
if: ${{ github.event.label.name == 'create-review-app' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: create review app for space | |
uses: fastruby/manage-heroku-review-app@v1.2 | |
with: | |
action: create | |
env: | |
HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} | |
HEROKU_PIPELINE_ID: ${{ secrets.HEROKU_PIPELINE_ID_SPACE }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: create review app for api | |
uses: fastruby/manage-heroku-review-app@v1.2 | |
with: | |
action: create | |
env: | |
HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} | |
HEROKU_PIPELINE_ID: ${{ secrets.HEROKU_PIPELINE_ID_API }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: fastruby/pr-unlabeler@v1 | |
with: | |
label-to-remove: "create-review-app" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
destroy-review-app: | |
if: ${{ github.event.label.name == 'destroy-review-app' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: destroy review app for space | |
uses: fastruby/manage-heroku-review-app@v1.2 | |
with: | |
action: destroy | |
env: | |
HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} | |
HEROKU_PIPELINE_ID: ${{ secrets.HEROKU_PIPELINE_ID_SPACE }} | |
- name: destroy review app for api | |
uses: fastruby/manage-heroku-review-app@v1.2 | |
with: | |
action: destroy | |
env: | |
HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} | |
HEROKU_PIPELINE_ID: ${{ secrets.HEROKU_PIPELINE_ID_API }} | |
- uses: fastruby/pr-unlabeler@v1 | |
with: | |
label-to-remove: "destroy-review-app" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |