diff --git a/.github/workflows/update-migration-branch-from-govpaas.yml b/.github/workflows/update-migration-branch-from-govpaas.yml new file mode 100644 index 00000000000..027e9817dc3 --- /dev/null +++ b/.github/workflows/update-migration-branch-from-govpaas.yml @@ -0,0 +1,34 @@ +name: Update Migration Branch + +on: + pull_request: + types: + - closed + +permissions: + contents: write + +jobs: + sync: + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Setup Git User + run: | + git config user.name "GitHub Action" + git config user.email "" + + + - name: Update Migration Branch + run: | + git checkout govuk-paas-deploy + git fetch origin + git checkout migration-deploy + git pull + git merge origin/govuk-paas-deploy + git push origin migration-deploy \ No newline at end of file diff --git a/CODEOWNERS b/CODEOWNERS index dfcffe6a647..b05af208a8b 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1,2 @@ -* @uktrade/datahub +# * @uktrade/datahub +* @cgsunkel @marijnkampf @p3dr0migue1 @DeanElliott96 @bau123 \ No newline at end of file diff --git a/src/client/index.jsx b/src/client/index.jsx index e354fc152d9..bbedf00bc14 100644 --- a/src/client/index.jsx +++ b/src/client/index.jsx @@ -83,7 +83,7 @@ if (globalProps.sentryDsn) { ], }), ], - tracesSampleRate: 1.0, + tracesSampleRate: 0.01, }) }