mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 04:43:03 -05:00
21 lines
417 B
YAML
21 lines
417 B
YAML
name: Add Labels
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ opened, edited, synchronize ]
|
|
|
|
jobs:
|
|
add_supporters:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: npm i @actions/core @actions/github
|
|
|
|
- name: Add labels
|
|
uses: ./.github/github-action/
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|