Skip to content

Commit

Permalink
implemented bot on itself
Browse files Browse the repository at this point in the history
  • Loading branch information
Bullrich committed Sep 26, 2023
1 parent fd4b55f commit 7251799
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto-merge-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Auto Merge Bot

on:
# GitHub considers PRs as issues
issue_comment:
types: [created]

jobs:
set-auto-merge:
runs-on: ubuntu-latest
# Important! This forces the job to run only on Pull Requests
if: ${{ github.event.issue.pull_request }}
steps:
- name: Set auto merge
uses: paritytech/auto-merge-bot@main
with:
GITHUB_TOKEN: '${{ github.token }}'

0 comments on commit 7251799

Please sign in to comment.