Skip to content

Commit

Permalink
ci: added dependabot-automerge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Mar 23, 2023
1 parent ce5edc4 commit 110bf64
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Dependabot Auto-merge

# NOTE: This workflow relies on a Personal Access Token from the @ActivityWatchBot user
# See this issue for details: https://github.com/ridedott/merge-me-action/issues/1581

on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- Build

permissions:
contents: write
pull-requests: read

jobs:
auto_merge:
name: Auto-merge
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success' && github.actor == 'dependabot[bot]'

steps:
- uses: ridedott/merge-me-action@v2
with:
GITHUB_TOKEN: ${{ secrets.AWBOT_GH_TOKEN }}

1 comment on commit 110bf64

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.12.1 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.12.1 (click to expand)

Please sign in to comment.