diff options
author | Matt Clay <matt@mystile.com> | 2023-06-29 19:18:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 19:18:15 +0200 |
commit | f1ddcb4ae48dc75f74a42962bca1451f4fd1fd9b (patch) | |
tree | 8315ab38d274223ec35bb3e04a6e7517346dc09e /.github | |
parent | Remove unused unit test code (#81150) (diff) | |
download | ansible-f1ddcb4ae48dc75f74a42962bca1451f4fd1fd9b.tar.xz ansible-f1ddcb4ae48dc75f74a42962bca1451f4fd1fd9b.zip |
Simplify release name tracking and testing (#81151)
Convert the release names list from YAML to plain text, removing the need for YAML parsing in the sanity test.
Diffstat (limited to '.github')
-rw-r--r-- | .github/RELEASE_NAMES.txt | 17 | ||||
-rw-r--r-- | .github/RELEASE_NAMES.yml | 18 |
2 files changed, 17 insertions, 18 deletions
diff --git a/.github/RELEASE_NAMES.txt b/.github/RELEASE_NAMES.txt new file mode 100644 index 0000000000..ed2c3eeb98 --- /dev/null +++ b/.github/RELEASE_NAMES.txt @@ -0,0 +1,17 @@ +2.16.0 All My Love +2.15.0 Ten Years Gone +2.14.0 C'mon Everybody +2.13.0 Nobody's Fault but Mine +2.12.0 Dazed and Confused +2.11.0 Hey Hey, What Can I Do +2.10.0 When the Levee Breaks +2.9.0 Immigrant Song +2.8.0 How Many More Times +2.7.0 In the Light +2.6.0 Heartbreaker +2.5.0 Kashmir +2.4.0 Dancing Days +2.3.0 Ramble On +2.2.0 The Battle of Evermore +2.1.0 The Song Remains the Same +2.0.0 Over the Hills and Far Away diff --git a/.github/RELEASE_NAMES.yml b/.github/RELEASE_NAMES.yml deleted file mode 100644 index 2bfc12e7ed..0000000000 --- a/.github/RELEASE_NAMES.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -- 2.16.0 All My Love -- 2.15.0 Ten Years Gone -- 2.14.0 C'mon Everybody -- 2.13.0 Nobody's Fault but Mine -- 2.12.0 Dazed and Confused -- 2.11.0 Hey Hey, What Can I Do -- 2.10.0 When the Levee Breaks -- 2.9.0 Immigrant Song -- 2.8.0 How Many More Times -- 2.7.0 In the Light -- 2.6.0 Heartbreaker -- 2.5.0 Kashmir -- 2.4.0 Dancing Days -- 2.3.0 Ramble On -- 2.2.0 The Battle of Evermore -- 2.1.0 The Song Remains the Same -- 2.0.0 Over the Hills and Far Away |