We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d873ec1 commit bc21d1bCopy full SHA for bc21d1b
1 file changed
.github/workflows/go-verdiff.yaml
@@ -11,4 +11,13 @@ jobs:
11
with:
12
fetch-depth: 0
13
- name: Check golang version
14
- run: hack/tools/check-go-version.sh "${{ github.event.pull_request.base.sha }}"
+ run: |
15
+ export LABELS="$(gh api repos/$OWNER/$REPO/pulls/$PR --jq '.labels.[].name')"
16
+ echo "$LABELS"
17
+ hack/tools/check-go-version.sh "${{ github.event.pull_request.base.sha }}"
18
+ shell: bash
19
+ env:
20
+ GH_TOKEN: ${{ github.token }}
21
+ OWNER: ${{ github.repository_owner }}
22
+ REPO: ${{ github.event.repository.name }}
23
+ PR: ${{ github.event.pull_request.number }}
0 commit comments