From 5388008844c0269094ea7b73a490e431d36932f3 Mon Sep 17 00:00:00 2001 From: Stephanie Date: Fri, 21 Jul 2023 12:17:39 -0400 Subject: [PATCH 1/2] add needs-triage workflow Signed-off-by: Stephanie --- .github/workflows/issue-management.yaml | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/issue-management.yaml diff --git a/.github/workflows/issue-management.yaml b/.github/workflows/issue-management.yaml new file mode 100644 index 000000000..eaf269333 --- /dev/null +++ b/.github/workflows/issue-management.yaml @@ -0,0 +1,29 @@ +name: Issue Management + +on: + issues: + types: + - opened + - reopened + +env: + ORGANIZATION: devfile + # See https://github.com/orgs/devfile/projects/10/views/1 + PROJECT_NUMBER: 10 + +jobs: + manage_issue_labels: + name: Label issue + if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }} + runs-on: ubuntu-latest + concurrency: issue_labels-${{ github.event.issue.number }} + permissions: + issues: write + steps: + - name: Add needs-triage label + # Action recommended in https://docs.github.com/en/actions/managing-issues-and-pull-requests/adding-labels-to-issues + # Recommended to pin unofficial Actions to a specific commit SHA + uses: andymckay/labeler@3a4296e9dcdf9576b0456050db78cfd34853f260 + with: + add-labels: "needs-triage" + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From a4782d9fe09fd110ceb9c5fe633426ecea73f0bc Mon Sep 17 00:00:00 2001 From: Stephanie Date: Fri, 21 Jul 2023 12:40:23 -0400 Subject: [PATCH 2/2] try to resolve build issue Signed-off-by: Stephanie --- .devfile/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devfile/Dockerfile b/.devfile/Dockerfile index 8f468f24e..2e90e535e 100644 --- a/.devfile/Dockerfile +++ b/.devfile/Dockerfile @@ -2,6 +2,7 @@ FROM python:3-alpine ENV GOROOT /usr/lib/go RUN apk add --no-cache --update curl bash jq go git openssh \ +&& pip3 install "cython<3.0.0" \ && pip3 install yq \ && pip3 install jsonschema-cli