Skip to content

Commit

Permalink
chore: Synced local '.github/workflows/dependabot.yml' with remote '.…
Browse files Browse the repository at this point in the history
…github/workflows/dependabot.yml' (#810)
  • Loading branch information
BaljeetSinghaw committed Nov 14, 2024
1 parent d562cce commit 7f10c24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
GITHUB_TOKEN: ${{secrets.SYNCED_GITHUB_TOKEN_REPO}}
steps:
- name: approve
run: gh pr review --comment -b "Automatically approved since dependabot is [configured](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#labels) with label `automatic`."
if: ${{ github.event.label.name == 'automatic' }}
run: gh pr review --comment -b "Automatically approved since dependabot is not [configured](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#labels) with label `do not merge`."
if: ${{ github.event.label.name != 'do not merge' }}
- name: approve-instructions
run: echo "configure dependabot with label 'automatic' to have it automatically approved and merged. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#labels"
if: ${{ github.event.label.name != 'automatic' }}
run: echo "Configure dependabot with label 'do not merge' to prevent it from being automatically approved and merged. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#labels"
if: ${{ github.event.label.name == 'do not merge' }}
- name: merge
run: gh pr merge --auto --squash --delete-branch "$PR_URL"

0 comments on commit 7f10c24

Please sign in to comment.