mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
24 lines
501 B
YAML
24 lines
501 B
YAML
name: dependabot-pr
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
create-pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install zsh
|
|
run: sudo apt-get update; sudo apt-get install zsh
|
|
|
|
- name: Run dependabot-pr.sh
|
|
run: ./.github/workflows/scripts/dependabot-pr.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
|