mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
19 lines
391 B
YAML
19 lines
391 B
YAML
name: Add Labels
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, edited, synchronize]
|
|
|
|
jobs:
|
|
add_labels:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: add labels
|
|
uses: actions-ecosystem/action-add-labels@v1
|
|
if: ${{ contains( fromJson('[ "tomalaforge" ]'), github.actor ) }}
|
|
with:
|
|
labels: supporter
|