mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 05:13:02 -05:00
22 lines
476 B
YAML
22 lines
476 B
YAML
name: Add Labels
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [ opened, edited ]
|
|
|
|
jobs:
|
|
add_labels:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ startsWith(github.event.pull_request.title, 'Answer') }}
|
|
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 }}
|