mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
24 lines
528 B
YAML
24 lines
528 B
YAML
name: On PR Open
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- release/**
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: 'microsoft/azuredatastudio'
|
|
ref: main
|
|
path: ./actions
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions/build/actions
|
|
|
|
- name: Run Port Labeler
|
|
uses: ./actions/build/actions/auto-labeler
|
|
with:
|
|
label: "Port Request"
|