mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
17 lines
383 B
YAML
17 lines
383 B
YAML
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'
|