mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Bump hramos/label-actions from 1 to 2 Bumps [hramos/label-actions](https://github.com/hramos/label-actions) from 1 to 2. - [Release notes](https://github.com/hramos/label-actions/releases) - [Commits](https://github.com/hramos/label-actions/compare/v1...v2) --- updated-dependencies: - dependency-name: hramos/label-actions dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * rename --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
16 lines
319 B
YAML
16 lines
319 B
YAML
name: On Label
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
processLabelAction:
|
|
name: Process Label Action
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Process Label Action
|
|
uses: hramos/label-actions@v2
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|