Skip to content

Remove nginx config files from cloud proxy container in favor of Configmaps for easier runtime overrides #2609

Remove nginx config files from cloud proxy container in favor of Configmaps for easier runtime overrides

Remove nginx config files from cloud proxy container in favor of Configmaps for easier runtime overrides #2609

Workflow file for this run

---
name: pr-genfile-checker
on:
pull_request
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
get-dev-image:
uses: ./.github/workflows/get_image.yaml
with:
image-base-name: "dev_image"
run-genfiles:
runs-on: ubuntu-latest-8-cores
needs: get-dev-image
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
options: --cpus 7
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- name: go cache
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: /px/pkg/mod
key: go-cache-${{ hashFiles('go.sum') }}
restore-keys: |
go-cache-
- name: yarn cache
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: ./src/ui/.yarn/cache
key: yarn-cache-${{ hashFiles('src/ui/yarn.lock', 'src/ui/.yarnrc.yml') }}
restore-keys: |
yarn-cache-
- name: Add pwd to git safe dir
run: git config --global --add safe.directory `pwd`
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
id: changes
with:
filters: |
go:
- '**/*.go'
graphql:
- '**/*.graphql'
proto:
- '**/*.proto'
sql:
- '**/*.sql'
gobuild:
- '**/*.BUILD'
- 'go.mod'
- name: Run go generate
if: ${{ steps.changes.outputs.go == 'true' || steps.changes.outputs.sql == 'true' }}
run: go generate ./...
- name: Run update go protos
if: ${{ steps.changes.outputs.proto == 'true' }}
run: scripts/update_go_protos.sh
- name: Run update ts protos
if: ${{ steps.changes.outputs.proto == 'true' }}
run: scripts/update_ts_protos.sh
- name: Run update graphql schema
if: ${{ steps.changes.outputs.graphql == 'true' }}
run: src/cloud/api/controllers/schema/update.sh
- name: Run make go-setup
if: ${{ steps.changes.outputs.go == 'true' || steps.changes.outputs.gobuild == 'true' }}
run: make go-setup
- name: Fail if any files changed
shell: bash
run: |
if [[ $(git status --porcelain=v1 | wc -l) -ne 0 ]]; then
echo "Please update generated files by running the appropriate script."
echo "Changed files:"
git diff --name-only
exit 1
fi