From da76000b8d86546c599c72ff697684abe70cdc09 Mon Sep 17 00:00:00 2001 From: noahspannbauer Date: Mon, 18 May 2026 19:56:36 -0500 Subject: [PATCH] renaming .github to .gitea --- .gitea/workflows/main.yaml | 6 +++--- .gitea/workflows/pull_request.yaml | 4 ++-- .gitea/workflows/tag.yaml | 4 ++-- infrastructure/.gitignore | 3 ++- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 78fbb5b..d9d51d8 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -6,14 +6,14 @@ on: jobs: changes: - uses: ./.github/workflows/changes.yaml + uses: ./.gitea/workflows/changes.yaml build: if: ${{ needs.changes.outputs.api == 'true' || needs.changes.outputs.client == 'true' }} name: build needs: - changes - uses: ./.github/workflows/build_and_test.yaml + uses: ./.gitea/workflows/build_and_test.yaml with: environment_name: test version_number: ${{ github.run_id }} @@ -24,7 +24,7 @@ jobs: needs: - changes - build - uses: ./.github/workflows/deploy.yaml + uses: ./.gitea/workflows/deploy.yaml with: app_name: flying environment_name: test diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index a465173..b7fc872 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -5,14 +5,14 @@ on: jobs: changes: - uses: ./.github/workflows/changes.yaml + uses: ./.gitea/workflows/changes.yaml build: if: ${{ needs.changes.outputs.app == 'true' || needs.changes.outputs.client == 'true'}} name: build needs: - changes - uses: ./.github/workflows/build_and_test.yaml + uses: ./.gitea/workflows/build_and_test.yaml with: environment_name: pull_request version_number: ${{ github.run_id }} diff --git a/.gitea/workflows/tag.yaml b/.gitea/workflows/tag.yaml index 84bb150..a4356bc 100644 --- a/.gitea/workflows/tag.yaml +++ b/.gitea/workflows/tag.yaml @@ -7,7 +7,7 @@ on: jobs: build: name: build - uses: ./.github/workflows/build_and_test.yaml + uses: ./.gitea/workflows/build_and_test.yaml with: environment_name: prod version_number: ${{ github.ref_name }} @@ -17,7 +17,7 @@ jobs: name: deploy needs: - build - uses: ./.github/workflows/deploy.yaml + uses: ./.gitea/workflows/deploy.yaml with: app_name: flying environment_name: prod diff --git a/infrastructure/.gitignore b/infrastructure/.gitignore index 007a994..745d380 100644 --- a/infrastructure/.gitignore +++ b/infrastructure/.gitignore @@ -1,4 +1,5 @@ # Terraform .terraform/* *.tfstate -*.tfstate.* \ No newline at end of file +*.tfstate.* +.DS_Store \ No newline at end of file