1
0
mirror of synced 2026-01-05 21:04:17 -05:00
Files
docs/tests/fixtures/remove-liquid-statements/not-equals.md
Sarah Schneider 0b1c7ad466 Update Enterprise Liquid deprecation handling to use new versions (#15818)
* update Liquid deprecation fixtures to use new versions

* update module that removes deprecated GHES frontmatter for new versions

* update module that removes deprecated GHES conditionals for new versions

* update script to use new versions and also remove internal-developer checkout option

* update deprecated Liquid tests to use new versions

* remove unnecessary leading slash in getEnterpriseServerNumber pattern

* include a step that runs script/remove-unused-assets.js

* Update script/remove-deprecated-enterprise-version-markup.js

Co-authored-by: Jason Etcovitch <jasonetco@github.com>

* require script instead of execSync

Co-authored-by: Jason Etcovitch <jasonetco@github.com>
2020-09-30 19:29:08 -04:00

1.1 KiB

title, intro
title intro
Not Equals To Version To Deprecate Remove liquid only

1

{% if currentVersion != "enterprise-server@2.13" %}

Alpha

{% endif %}

2

{% if currentVersion == "free-pro-team@latest" or currentVersion != "enterprise-server@2.13" %}

Alpha

{% endif %}

3

{% if currentVersion == "free-pro-team@latest" %}

Alpha

{% else %}

Bravo

{% if currentVersion != "enterprise-server@2.13" %}

Charlie

{% endif %} {% endif %}

4

{% if currentVersion == "free-pro-team@latest" %}

Alpha

{% if currentVersion != "enterprise-server@2.13" %}

Bravo

{% endif %}

{% else %}

Charlie

{% endif %}

5

{% if currentVersion != "enterprise-server@2.13" %}

Alpha

{% if currentVersion == "free-pro-team@latest" %}

Bravo

{% endif %}

{% else %}

Charlie

{% endif %}

6

{% if currentVersion != "free-pro-team@latest" and currentVersion != "enterprise-server@2.13" %}

Alpha

{% endif %}