diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 710b998cf5..0000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,21 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: maven # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: weekly - - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - - - package-ecosystem: npm - directory: /report/report-ng - schedule: - interval: weekly \ No newline at end of file diff --git a/.github/workflows/bowlby_health.yml b/.github/workflows/bowlby_health.yml deleted file mode 100644 index faf3635ff6..0000000000 --- a/.github/workflows/bowlby_health.yml +++ /dev/null @@ -1,25 +0,0 @@ -# This workflow hits an endpoint of our bowlby instance and fails if we don't get a success response -# This confirms that -# * The OCI instance is still running -# * The https cert is still good -# * The github api token is still good - -name: health - -on: - workflow_dispatch: - schedule: - - cron: '0 8 * * *' - -jobs: - main: - runs-on: ubuntu-latest - steps: - - - name: Check the deployed service URL - uses: jtalk/url-health-check-action@v4 - with: - url: https://bowlby.flowty.dev/flow/latest/Mastercard/flow/test.yml - max-attempts: 3 - retry-delay: 5s - retry-all: true diff --git a/.github/workflows/mutation.yml b/.github/workflows/mutation.yml index 8cd12a27ac..0c54a504f5 100644 --- a/.github/workflows/mutation.yml +++ b/.github/workflows/mutation.yml @@ -37,22 +37,13 @@ jobs: - name: Save aggregated mutation report uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 - id: upload_aggregated with: name: mutation_report path: aggregator/target/pit-reports - - name: Emit aggregated artifact link - run: echo " * [aggregated report](https://bowlby.flowty.dev/flow/artifacts/Mastercard/flow/${{ steps.upload_aggregated.outputs.artifact-id }}/index.html)" >> $GITHUB_STEP_SUMMARY - - name: Save project mutation reports uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 - id: upload_project if: ${{ failure() }} with: name: project_mutation_reports path: '**/target/pit-reports' - - - name: Emit project artifact link - if: ${{ failure() }} - run: echo " * [project reports](https://bowlby.flowty.dev/flow/artifacts/Mastercard/flow/${{ steps.upload_project.outputs.artifact-id }})" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b14902bfa0..d1a7d2be7a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,19 +35,12 @@ jobs: - name: Save flow execution reports uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 - id: upload_flow with: name: flow_execution_reports path: 'example/**/target/mctf/latest' - name: Save angular coverage reports uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 - id: upload_angular with: name: angular_coverage path: 'report/report-ng/coverage' - - - name: Emit links - run: | - echo " * [flow reports](https://bowlby.flowty.dev/flow/artifacts/Mastercard/flow/${{ steps.upload_flow.outputs.artifact-id }})" >> $GITHUB_STEP_SUMMARY - echo " * [angular coverage](https://bowlby.flowty.dev/flow/artifacts/Mastercard/flow/${{ steps.upload_angular.outputs.artifact-id }}/report/index.html)" >> $GITHUB_STEP_SUMMARY