-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
temporarily comment-out review-apps.yml as not using them here #61
- Loading branch information
Showing
1 changed file
with
31 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
name: Review App | ||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize, closed] | ||
env: | ||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | ||
jobs: | ||
review_app: | ||
if: github.event.pull_request.user.login != 'dependabot[bot]' | ||
name: Review App Job | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Install flyctl | ||
run: curl -L https://fly.io/install.sh | FLYCTL_INSTALL=/usr/local sh | ||
- name: Set up Elixir | ||
uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: 24.3.4 | ||
elixir-version: 1.14.1 | ||
- name: Run Review App Script | ||
run: ./.github/scripts/review-apps.sh | ||
env: | ||
ENCRYPTION_KEYS: ${{ secrets. ENCRYPTION_KEYS }} | ||
AUTH_API_KEY: ${{ secrets.FLY_AUTH_API_KEY }} | ||
PR_NUMBER: ${{ github.event.number}} | ||
EVENT_ACTION: ${{ github.event.action }} | ||
FLY_ORG: dwyl-mvp | ||
FLY_REGION: lhr | ||
FLY_POSTGRES_NAME: mvp-db | ||
# name: Review App | ||
# on: | ||
# pull_request: | ||
# types: [opened, reopened, synchronize, closed] | ||
# env: | ||
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | ||
# jobs: | ||
# review_app: | ||
# if: github.event.pull_request.user.login != 'dependabot[bot]' | ||
# name: Review App Job | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v3 | ||
# - name: Install flyctl | ||
# run: curl -L https://fly.io/install.sh | FLYCTL_INSTALL=/usr/local sh | ||
# - name: Set up Elixir | ||
# uses: erlef/setup-beam@v1 | ||
# with: | ||
# otp-version: 24.3.4 | ||
# elixir-version: 1.14.1 | ||
# - name: Run Review App Script | ||
# run: ./.github/scripts/review-apps.sh | ||
# env: | ||
# ENCRYPTION_KEYS: ${{ secrets. ENCRYPTION_KEYS }} | ||
# AUTH_API_KEY: ${{ secrets.FLY_AUTH_API_KEY }} | ||
# PR_NUMBER: ${{ github.event.number}} | ||
# EVENT_ACTION: ${{ github.event.action }} | ||
# FLY_ORG: dwyl-mvp | ||
# FLY_REGION: lhr | ||
# FLY_POSTGRES_NAME: mvp-db | ||
|