feat: add merged PR labeller bot

This commit is contained in:
Abhijith Vijayan 2021-02-21 14:33:55 +05:30 committed by GitHub
parent 302c28c13c
commit ac2e18cbe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,16 @@
name: Label PR on Merge Bot Action
on:
pull_request:
types: [ closed ]
jobs:
label_pr_job:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Label PR on Merge Bot
uses: abhijithvijayan/label-pr-on-merge-bot@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
merged_label: '🚀 merged'