diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index df99bc6..2efd35b 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -43,5 +43,5 @@ jobs: with: add: ". --force" default_author: github_actions - message: "[GitHub Actions] Commit generated pages artifacts" + message: "Commit generated pages artifacts" push: origin gh-pages --force diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 17ee3d2..7459c32 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -65,37 +65,40 @@ jobs: ports: - 3306:3306 steps: - - name: Checkout repository - if: ${{ !env.act }} # Only run on GitHub Actions - uses: actions/checkout@v3 - - name: Wait for database container to start - run: sleep 30s - shell: bash - - name: Get service container logs - run: docker logs -n 100 "${{ job.services.mysql.id }}" - - name: Verify tables exist - if: ${{ !env.ACT }} - run: echo "USE avinya_db; SHOW TABLES;" | mysql --host=$HOST --port=$PORT --user=$USER - env: - HOST: mysql - PORT: 3306 - USER: root - - name: Run schema on database - if: ${{ !env.act }} # Only run on GitHub Actions - run: cat ./schema/*.sql | mysql --host=$HOST --port=$PORT --user=$USER - env: - HOST: mysql - PORT: 3306 - USER: root - working-directory: db - - name: Run schema on database again - if: ${{ !env.act }} # Only run on GitHub Actions - run: cat ./schema/*.sql | mysql --host=$HOST --port=$PORT --user=$USER - env: - HOST: mysql - PORT: 3306 - USER: root - working-directory: db + # - name: Checkout repository + # if: ${{ !env.act }} # Only run on GitHub Actions + # uses: actions/checkout@v3 + # - name: Wait for database container to start + # run: sleep 30s + # shell: bash + # - name: Get service container logs + # run: docker logs -n 100 "${{ job.services.mysql.id }}" + # - name: Verify tables exist + # if: ${{ !env.ACT }} + # run: echo "USE avinya_db; SHOW TABLES;" | mysql --host=$HOST --port=$PORT --user=$USER + # env: + # HOST: mysql + # PORT: 3306 + # USER: root + # - name: Run schema on database + # if: ${{ !env.act }} # Only run on GitHub Actions + # run: cat ./schema/*.sql | mysql --host=$HOST --port=$PORT --user=$USER + # env: + # HOST: mysql + # PORT: 3306 + # USER: root + # working-directory: db + # - name: Run schema on database again + # if: ${{ !env.act }} # Only run on GitHub Actions + # run: cat ./schema/*.sql | mysql --host=$HOST --port=$PORT --user=$USER + # env: + # HOST: mysql + # PORT: 3306 + # USER: root + # working-directory: db + - name: Disable Test + run: | + echo "This is currently disabled due to a bug. See: #18" db-idempotence-local-test: name: (Local Only) Database Idempotence Test runs-on: ubuntu-22.04 @@ -177,4 +180,4 @@ jobs: with: add: "client --force" default_author: github_actions - message: "[GitHub Actions] Commit generated GraphQL client" + message: "Commit generated GraphQL client" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f06141..39f6dee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: add: "." push: origin main default_author: github_actions - message: "[GitHub Actions] Commit version updates" + message: "Update version in Ballerina.toml files" update-staging-db: name: Update Azure staging database needs: update-version