From bbcfa3ecc248df05ad26bbe018de67632fac091e Mon Sep 17 00:00:00 2001 From: Valeriy Svydenko Date: Wed, 10 Nov 2021 22:25:54 +0200 Subject: [PATCH] feat: add try-in-web-ide GH action (#511) Signed-off-by: svor --- .github/workflows/try-in-web-ide.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 000000000..eb326479a --- /dev/null +++ b/.github/workflows/try-in-web-ide.yaml @@ -0,0 +1,25 @@ + +# +# Copyright (c) 2021 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 +# + +name: Try in Web IDE + +on: + pull_request_target: + types: [opened, synchronize] + +jobs: + add-link: + runs-on: ubuntu-20.04 + 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 }}