Files
codeocean/.github/workflows/dependabot.yml
Sebastian Serth 94404370c4 Upgrade Sentry to v8 and remove custom Dependabot grouping
As part of the upgrade process, we need to rework the tracing instrumentation. Now, we are just wrapping all async functions in a new sentry transaction, which will automatically end once the function returns.

Further, the structure of the Sentry packages got reworked, so that we only need a single package by now. This removes the need to group dependabot updates.

Co-authored-by: Jan Graichen <jgraichen@altimos.de>
2024-05-24 14:52:14 +02:00

16 lines
401 B
YAML

name: Dependabot Automerge Check
on:
- pull_request_target
jobs:
auto-merge:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Automerge dependabot dependencies
uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
github-token: ${{ secrets.OPENHPI_BOT_TOKEN }}