⬆️ Bump golang.org/x/text from 0.19.0 to 0.20.0 in /utils #6444
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot | |
on: pull_request_target | |
permissions: | |
pull-requests: write | |
issues: write | |
repository-projects: write | |
contents: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
# Checkout with full history for to allow compare with base branch | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
- uses: FranzDiebold/github-env-vars-action@v2 | |
- name: Install CI/CD tools | |
run: pip install continuous-delivery-scripts && pip list | |
- name: Dependabot metadata | |
id: dependabot-metadata | |
uses: dependabot/[email protected] | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Add a label | |
run: gh pr edit "$PR_URL" --add-label "bot" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Approve the PR | |
run: gh pr review --approve "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Assert news | |
run: cd-assert-news -b ${CI_ACTION_REF_NAME} | |
env: | |
GIT_TOKEN: ${{ secrets.GIT_SECRET }} | |
- name: Auto-merge the PR | |
run: gh pr merge --auto --squash --body "Dependency upgrade $PR_URL" --merge "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |