testing functonality of backlogged tickets

This commit is contained in:
skye rogers 2025-03-24 13:11:41 -07:00
parent 4044cb3801
commit 5bc0454b67

View file

@ -1,27 +1,13 @@
name: Dependabot auto-merge name: Comment when opened
on: pull_request on:
issues:
permissions: types:
pull-requests: write - opened
contents: write
jobs: jobs:
dependabot: comment:
permissions:
pull-requests: read
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
steps: steps:
- name: Dependabot metadata - run: gh issue comment $ISSUE --body "Thank you for opening this issue!"
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
with:
alert-lookup: true
github-token: "${{ secrets.PAT_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
# if: (steps.dependabot-metadata.outputs.cvss == true && update_types == 'minor' || 'patch')
if: update_types == 'minor' || 'patch'
run: gh pr merge --auto --merge "$PR_URL"
env: env:
PR_URL: ${{github.event.pull_request.html_url}} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} ISSUE: ${{ github.event.issue.html_url }}