We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbb08f3 commit 3d3b8caCopy full SHA for 3d3b8ca
1 file changed
.github/workflows/label-issues.yml
@@ -27,17 +27,17 @@ jobs:
27
echo "labels<<EOF" >> $GITHUB_ENV
28
echo "$LABELS" >> $GITHUB_ENV
29
echo "EOF" >> $GITHUB_ENV
30
- echo "filter=$(jq -r '.filter' ./labels.json)" >> $GITHUB_ENV
+ echo "FILTER=$(jq -r '.filter' ./labels.json)" >> $GITHUB_ENV
31
32
- name: Collect all issues
33
run: |
34
gh issue list --state all --label "plugin-modification" --json number,labels,body > issues.json
35
36
- name: Find unlabeled issues
37
38
- echo "$env.labels"
39
- echo "$env.filter"
40
- jq --argjson labels "$env.labels" "$env.filter" issues.json > unlabeled_issues.json
+ echo "$LABELS"
+ echo "$FILTER"
+ jq --argjson labels "$LABELS" "$FILTER" issues.json > unlabeled_issues.json
41
42
- name: Install Copilot CLI
43
0 commit comments