-
-
Notifications
You must be signed in to change notification settings - Fork 206
85 lines (71 loc) · 3.3 KB
/
Copy pathlint-flag-files.yml
File metadata and controls
85 lines (71 loc) · 3.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: "GO Feature Flag linting"
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
examples-linting:
runs-on: ubuntu-latest
name: Lint all the examples configuration files
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: data_export_file
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/data_export_file/flags.goff.yaml
- name: data_export_googlecloudstorage
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/data_export_googlecloudstorage/flags.goff.yaml
- name: data_export_s3
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/data_export_s3/flags.goff.yaml
- name: demo
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/demo/demo-flags.goff.yaml
- name: retriever_configmap
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/retriever_configmap/flags.goff.yaml
- name: retriever_file
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/retriever_file/flags.goff.yaml
- name: retriever_github
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/retriever_github/flags.goff.yaml
- name: retriever_http
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/retriever_http/flags.goff.yaml
- name: retriever_multiple_config_files_1
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/retriever_multiple_config_files/flags.goff.yaml
- name: retriever_multiple_config_files_2
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/retriever_multiple_config_files/flags2.goff.yaml
- name: rollout_experimentation
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/rollout_experimentation/flags.goff.yaml
- name: rollout_progressive
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/rollout_progressive/flags.goff.yaml
- name: rollout_scheduled
uses: go-feature-flag/gofeatureflag-lint-action@2ecce17c1a8f5798671140cd011f76c6908b622f # v1.1.0
with:
flag-file: ./examples/rollout_scheduled/flags.goff.yaml