mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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@v4
|
|
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"
|