renaming .github to .gitea
Some checks failed
Main / changes (push) Failing after 1m47s
Main / build (push) Has been skipped
Main / deploy (push) Has been skipped

This commit is contained in:
2026-05-18 19:56:36 -05:00
parent b789e1264a
commit da76000b8d
4 changed files with 9 additions and 8 deletions

View File

@@ -6,14 +6,14 @@ on:
jobs: jobs:
changes: changes:
uses: ./.github/workflows/changes.yaml uses: ./.gitea/workflows/changes.yaml
build: build:
if: ${{ needs.changes.outputs.api == 'true' || needs.changes.outputs.client == 'true' }} if: ${{ needs.changes.outputs.api == 'true' || needs.changes.outputs.client == 'true' }}
name: build name: build
needs: needs:
- changes - changes
uses: ./.github/workflows/build_and_test.yaml uses: ./.gitea/workflows/build_and_test.yaml
with: with:
environment_name: test environment_name: test
version_number: ${{ github.run_id }} version_number: ${{ github.run_id }}
@@ -24,7 +24,7 @@ jobs:
needs: needs:
- changes - changes
- build - build
uses: ./.github/workflows/deploy.yaml uses: ./.gitea/workflows/deploy.yaml
with: with:
app_name: flying app_name: flying
environment_name: test environment_name: test

View File

@@ -5,14 +5,14 @@ on:
jobs: jobs:
changes: changes:
uses: ./.github/workflows/changes.yaml uses: ./.gitea/workflows/changes.yaml
build: build:
if: ${{ needs.changes.outputs.app == 'true' || needs.changes.outputs.client == 'true'}} if: ${{ needs.changes.outputs.app == 'true' || needs.changes.outputs.client == 'true'}}
name: build name: build
needs: needs:
- changes - changes
uses: ./.github/workflows/build_and_test.yaml uses: ./.gitea/workflows/build_and_test.yaml
with: with:
environment_name: pull_request environment_name: pull_request
version_number: ${{ github.run_id }} version_number: ${{ github.run_id }}

View File

@@ -7,7 +7,7 @@ on:
jobs: jobs:
build: build:
name: build name: build
uses: ./.github/workflows/build_and_test.yaml uses: ./.gitea/workflows/build_and_test.yaml
with: with:
environment_name: prod environment_name: prod
version_number: ${{ github.ref_name }} version_number: ${{ github.ref_name }}
@@ -17,7 +17,7 @@ jobs:
name: deploy name: deploy
needs: needs:
- build - build
uses: ./.github/workflows/deploy.yaml uses: ./.gitea/workflows/deploy.yaml
with: with:
app_name: flying app_name: flying
environment_name: prod environment_name: prod

View File

@@ -2,3 +2,4 @@
.terraform/* .terraform/*
*.tfstate *.tfstate
*.tfstate.* *.tfstate.*
.DS_Store