mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 04:43:03 -05:00
22 lines
471 B
YAML
22 lines
471 B
YAML
name: updates Labels
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
|
|
jobs:
|
|
update_labels:
|
|
runs-on: ubuntu-latest
|
|
if: |
|
|
contains(github.event.pull_request.labels.*.name, 'sponsor') ||
|
|
contains(github.event.pull_request.labels.*.name, 'contributor')
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Add labels
|
|
uses: actions-ecosystem/action-add-labels@v1
|
|
with:
|
|
labels: to be reviewed/update
|