Run enforce labels workflow on version bump in clients repo (#4006)
* Fix version bump to run enforce labels workflow * Add login to Azure * Trigger enforce labels manually from bump version workflow * Update .github/workflows/enforce-labels.yml Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com> * Update .github/workflows/version-bump.yml Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com> Co-authored-by: Vince Grassia <593223+vgrassia@users.noreply.github.com>
This commit is contained in:
parent
aac33d32b8
commit
618253fb14
|
@ -2,6 +2,7 @@
|
||||||
name: Enforce PR labels
|
name: Enforce PR labels
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_call:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [labeled, unlabeled, opened, edited, synchronize]
|
types: [labeled, unlabeled, opened, edited, synchronize]
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
@ -175,3 +175,8 @@ jobs:
|
||||||
|
|
||||||
## Objective
|
## Objective
|
||||||
Automated ${{ github.event.inputs.client }} version bump to ${{ github.event.inputs.version_number }}"
|
Automated ${{ github.event.inputs.client }} version bump to ${{ github.event.inputs.version_number }}"
|
||||||
|
enforce-labels:
|
||||||
|
name: Enforce Labels
|
||||||
|
needs: bump_version
|
||||||
|
uses: ./.github/workflows/enforce-labels.yml
|
||||||
|
secrets: inherit
|
||||||
|
|
Loading…
Reference in New Issue