...

Text file src/go.opentelemetry.io/otel/.github/workflows/create-dependabot-pr.yml

Documentation: go.opentelemetry.io/otel/.github/workflows

     1name: dependabot-pr
     2
     3on:
     4  workflow_dispatch:
     5
     6jobs:
     7  create-pr:
     8    runs-on: ubuntu-latest
     9    steps:
    10      - name: Install Go
    11        uses: actions/setup-go@v4
    12        with:
    13          go-version: "~1.21.3"
    14          check-latest: true
    15          cache-dependency-path: "**/go.sum"
    16
    17      - uses: actions/checkout@v4
    18
    19      - name: Install zsh
    20        run: sudo apt-get update; sudo apt-get install zsh
    21
    22      - name: Run dependabot-pr.sh
    23        run: ./.github/workflows/scripts/dependabot-pr.sh
    24        env:
    25          GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}

View as plain text