We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0a183b commit d3f9920Copy full SHA for d3f9920
1 file changed
.github/workflows/test.yaml
@@ -30,6 +30,16 @@ jobs:
30
script: |
31
import os
32
for folder in os.listdir('src'):
33
+ config = os.path.join('src', folder, 'devcontainer-feature.json')
34
+ if not os.path.isfile(config):
35
+ continue
36
+
37
+ with open(config, 'r') as f:
38
+ data = f.read()
39
+ if data.get('deprecated') is True:
40
+ print(f"Skipping deprecated feature: {folder}")
41
42
43
print(f"{folder}:")
44
print(f" - '**/{folder}/**'")
45
print(f" - '.github/workflows/test.yaml'")
0 commit comments