185 dataobject name may not be recognized when it includes digits #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ************************************************************************* | |
# ** Copyright (c) 2022 CentraleSupélec & EDF. | |
# ** All rights reserved. This program and the accompanying materials | |
# ** are made available under the terms of the Eclipse Public License v2.0 | |
# ** which accompanies this distribution, and is available at | |
# ** https://www.eclipse.org/legal/epl-v20.html | |
# ** | |
# ** This file is part of the RiseClipse tool | |
# ** | |
# ** Contributors: | |
# ** Computer Science Department, CentraleSupélec | |
# ** EDF R&D | |
# ** Contacts: | |
# ** [email protected] | |
# ** [email protected] | |
# ** Web site: | |
# ** https://riseclipse.github.io | |
# ************************************************************************* | |
name: Rollback if failure | |
# This CD workflow rollbacks the Pre-Release and Prepare next development version | |
# When a PR is closed (based on do_release and targeting master) or if the prepare-next-dev workflow fails | |
# Proceeds to delete do_release branch, delete the pre-release and delete the tag | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [closed] | |
branches: | |
- master | |
jobs: | |
call-rollback-if-failure-workflow: | |
if: github.event.pull_request.merged == false && startsWith(github.head_ref, 'do_release') | |
name: Rollback if failure | |
uses: riseclipse/riseclipse-developer/.github/workflows/Shared-Rollback-If-Failure.yml@master |