From 779b573721e72b52fe5d3e1c3160e46fd189c763 Mon Sep 17 00:00:00 2001 From: Ilya Buziuk Date: Mon, 3 Aug 2026 10:11:52 +0200 Subject: [PATCH] chore: gh action - try in web ide Signed-off-by: Ilya Buziuk --- .github/workflows/try-in-web-ide.yaml | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/try-in-web-ide.yaml diff --git a/.github/workflows/try-in-web-ide.yaml b/.github/workflows/try-in-web-ide.yaml new file mode 100644 index 00000000..d065836e --- /dev/null +++ b/.github/workflows/try-in-web-ide.yaml @@ -0,0 +1,28 @@ +# +# Copyright (c) 2026 Red Hat, Inc. +# This program and the accompanying materials are made +# available under the terms of the Eclipse Public License 2.0 +# which is available at https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Add Web IDE link on PRs +name: web-ide + +on: + pull_request_target: + types: [opened] + +jobs: + add-link: + runs-on: ubuntu-24.04 + permissions: + contents: read + pull-requests: write + statuses: write + steps: + - name: Web IDE Pull Request Check + id: try-in-web-ide + uses: redhat-actions/try-in-web-ide@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }}