docs(version): CRON to automaticaly check sdk versions update #4347
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
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 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: data_export_file | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/data_export_file/flags.goff.yaml | |
- name: data_export_googlecloudstorage | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/data_export_googlecloudstorage/flags.goff.yaml | |
- name: data_export_s3 | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/data_export_s3/flags.goff.yaml | |
- name: demo | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/demo/demo-flags.goff.yaml | |
- name: retriever_configmap | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/retriever_configmap/flags.goff.yaml | |
- name: retriever_file | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/retriever_file/flags.goff.yaml | |
- name: retriever_github | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/retriever_github/flags.goff.yaml | |
- name: retriever_http | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/retriever_http/flags.goff.yaml | |
- name: retriever_multiple_config_files_1 | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/retriever_multiple_config_files/flags.goff.yaml | |
- name: retriever_multiple_config_files_2 | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/retriever_multiple_config_files/flags2.goff.yaml | |
- name: rollout_experimentation | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/rollout_experimentation/flags.goff.yaml | |
- name: rollout_progressive | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/rollout_progressive/flags.goff.yaml | |
- name: rollout_scheduled | |
uses: go-feature-flag/gofeatureflag-lint-action@v1 | |
with: | |
flag-file: ./examples/rollout_scheduled/flags.goff.yaml |