|
1 |
| -name: Review App |
2 |
| -on: |
3 |
| - pull_request: |
4 |
| - types: [opened, reopened, synchronize, closed] |
5 |
| -env: |
6 |
| - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |
7 |
| -jobs: |
8 |
| - review_app: |
9 |
| - if: github.event.pull_request.user.login != 'dependabot[bot]' |
10 |
| - name: Review App Job |
11 |
| - runs-on: ubuntu-latest |
12 |
| - steps: |
13 |
| - - name: Checkout repository |
14 |
| - uses: actions/checkout@v3 |
15 |
| - - name: Install flyctl |
16 |
| - run: curl -L https://fly.io/install.sh | FLYCTL_INSTALL=/usr/local sh |
17 |
| - - name: Set up Elixir |
18 |
| - uses: erlef/setup-beam@v1 |
19 |
| - with: |
20 |
| - otp-version: 24.3.4 |
21 |
| - elixir-version: 1.14.1 |
22 |
| - - name: Run Review App Script |
23 |
| - run: ./.github/scripts/review-apps.sh |
24 |
| - env: |
25 |
| - ENCRYPTION_KEYS: ${{ secrets. ENCRYPTION_KEYS }} |
26 |
| - AUTH_API_KEY: ${{ secrets.FLY_AUTH_API_KEY }} |
27 |
| - PR_NUMBER: ${{ github.event.number}} |
28 |
| - EVENT_ACTION: ${{ github.event.action }} |
29 |
| - FLY_ORG: dwyl-mvp |
30 |
| - FLY_REGION: lhr |
31 |
| - FLY_POSTGRES_NAME: mvp-db |
| 1 | +# name: Review App |
| 2 | +# on: |
| 3 | +# pull_request: |
| 4 | +# types: [opened, reopened, synchronize, closed] |
| 5 | +# env: |
| 6 | +# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |
| 7 | +# jobs: |
| 8 | +# review_app: |
| 9 | +# if: github.event.pull_request.user.login != 'dependabot[bot]' |
| 10 | +# name: Review App Job |
| 11 | +# runs-on: ubuntu-latest |
| 12 | +# steps: |
| 13 | +# - name: Checkout repository |
| 14 | +# uses: actions/checkout@v3 |
| 15 | +# - name: Install flyctl |
| 16 | +# run: curl -L https://fly.io/install.sh | FLYCTL_INSTALL=/usr/local sh |
| 17 | +# - name: Set up Elixir |
| 18 | +# uses: erlef/setup-beam@v1 |
| 19 | +# with: |
| 20 | +# otp-version: 24.3.4 |
| 21 | +# elixir-version: 1.14.1 |
| 22 | +# - name: Run Review App Script |
| 23 | +# run: ./.github/scripts/review-apps.sh |
| 24 | +# env: |
| 25 | +# ENCRYPTION_KEYS: ${{ secrets. ENCRYPTION_KEYS }} |
| 26 | +# AUTH_API_KEY: ${{ secrets.FLY_AUTH_API_KEY }} |
| 27 | +# PR_NUMBER: ${{ github.event.number}} |
| 28 | +# EVENT_ACTION: ${{ github.event.action }} |
| 29 | +# FLY_ORG: dwyl-mvp |
| 30 | +# FLY_REGION: lhr |
| 31 | +# FLY_POSTGRES_NAME: mvp-db |
32 | 32 |
|
0 commit comments