content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
name: release-artifacts-auto\n\non:\n push:\n branches:\n - master\n - v[0-9]+.[0-9]+\n tags:\n - v[0-9]+.[0-9]+.[0-9]+\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n release-artifacts:\n if: github.repository == 'solana-labs/solana'\n uses: ./.github/workflows/release-artifacts.yml\n with:\n commit: ${{ github.sha }}\n secrets:\n AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}\n AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}\n\n error_reporting:\n needs:\n - release-artifacts\n if: failure() && github.event_name == 'push'\n uses: ./.github/workflows/error-reporting.yml\n secrets:\n WEBHOOK: ${{ secrets.SLACK_ERROR_REPORTING_WEBHOOK }}\n
dataset_sample\yaml\solana-labs_solana\.github\workflows\release-artifacts-auto.yml
release-artifacts-auto.yml
YAML
813
0.7
0.0625
0
awesome-app
355
2024-05-28T09:19:35.826424
MIT
false
3154a25bb7561f0bb674b1c1f4438f08
name: release-artifacts-manually\n\non:\n workflow_dispatch:\n inputs:\n commit:\n type: string\n required: true\n description: commit\n\njobs:\n release-artifacts:\n uses: ./.github/workflows/release-artifacts.yml\n with:\n commit: ${{ github.event.inputs.commit }}\n secrets:\n AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}\n AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}\n
dataset_sample\yaml\solana-labs_solana\.github\workflows\release-artifacts-manually.yml
release-artifacts-manually.yml
YAML
482
0.85
0
0
awesome-app
356
2023-12-22T09:36:47.967546
BSD-3-Clause
false
d17f25d2ff09118e00da41eda0f17668
name: release-artifacts\n\non:\n workflow_call:\n inputs:\n commit:\n required: false\n type: string\n secrets:\n AWS_ACCESS_KEY_ID:\n required: true\n AWS_SECRET_ACCESS_KEY:\n required: true\n AWS_S3_BUCKET:\n required: true\n\njobs:\n windows-build:\n runs-on: windows-2022\n outputs:\n tag: ${{ steps.build.outputs.tag }}\n channel: ${{ steps.build.outputs.channel }}\n steps:\n - name: Checkout\n uses: actions/checkout@v3\n with:\n ref: master\n fetch-depth: 0\n\n - name: Setup Rust\n shell: bash\n run: |\n source ci/rust-version.sh stable\n\n # copy the newest version env.sh before switching version.\n - name: Copy Env Script\n shell: bash\n run: |\n cp -r ci/env.sh /tmp/env.sh\n\n - name: Switch Version\n if: ${{ inputs.commit }}\n run: |\n git checkout ${{ inputs.commit }}\n\n - name: Build\n id: build\n shell: bash\n run: |\n vcpkg install openssl:x64-windows-static-md\n vcpkg integrate install\n choco install protoc\n export PROTOC="C:\ProgramData\chocolatey\lib\protoc\tools\bin\protoc.exe"\n source /tmp/env.sh\n echo "tag=$CI_TAG" >> $GITHUB_OUTPUT\n eval "$(ci/channel-info.sh)"\n echo "channel=$CHANNEL" >> $GITHUB_OUTPUT\n ci/publish-tarball.sh\n\n - name: Prepare Upload Files\n if: ${{ steps.build.outputs.channel != '' || steps.build.outputs.tag != '' }}\n shell: bash\n run: |\n FOLDER_NAME=${{ steps.build.outputs.tag || steps.build.outputs.channel }}\n mkdir -p "github-action-s3-upload/$FOLDER_NAME"\n cp -v "solana-release-x86_64-pc-windows-msvc.tar.bz2" "github-action-s3-upload/$FOLDER_NAME/"\n cp -v "solana-release-x86_64-pc-windows-msvc.yml" "github-action-s3-upload/$FOLDER_NAME/"\n cp -v "solana-install-init-x86_64-pc-windows-msvc"* "github-action-s3-upload/$FOLDER_NAME"\n\n - name: Upload Artifacts\n if: ${{ steps.build.outputs.channel != '' || steps.build.outputs.tag != '' }}\n uses: actions/upload-artifact@v3\n with:\n name: windows-artifact\n path: github-action-s3-upload/\n\n windows-s3-upload:\n if: ${{ needs.windows-build.outputs.channel != '' || needs.windows-build.outputs.tag != '' }}\n needs: [windows-build]\n runs-on: ubuntu-20.04\n steps:\n - name: Download\n uses: actions/download-artifact@v3\n with:\n name: windows-artifact\n path: ./github-action-s3-upload\n\n - name: Upload\n uses: jakejarvis/s3-sync-action@master\n with:\n args: --acl public-read --follow-symlinks\n env:\n AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}\n AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}\n AWS_REGION: "us-west-1"\n SOURCE_DIR: "github-action-s3-upload"\n\n windows-gh-release:\n if: ${{ needs.windows-build.outputs.tag != '' }}\n needs: [windows-build]\n runs-on: ubuntu-20.04\n steps:\n - name: Download\n uses: actions/download-artifact@v3\n with:\n name: windows-artifact\n path: ./github-action-s3-upload\n\n - name: Release\n uses: softprops/action-gh-release@v1\n with:\n tag_name: ${{ needs.windows-build.outputs.tag }}\n draft: true\n files: |\n github-action-s3-upload/${{ needs.windows-build.outputs.tag }}/*\n
dataset_sample\yaml\solana-labs_solana\.github\workflows\release-artifacts.yml
release-artifacts.yml
YAML
3,589
0.95
0.043103
0.009615
vue-tools
907
2024-02-07T20:55:20.188880
BSD-3-Clause
false
17cbd3ea477c71aaa3a30f4831f49326
#\n# Build steps that run after the primary pipeline on pushes and tags.\n# Pull requests to not run these steps.\nsteps:\n - name: "cargo audit"\n command: "ci/docker-run-default-image.sh ci/do-audit.sh"\n agents:\n queue: "release-build"\n timeout_in_minutes: 10\n - wait\n - name: "publish tarball (x86_64-unknown-linux-gnu)"\n command: "ci/publish-tarball.sh"\n agents:\n queue: "release-build"\n timeout_in_minutes: 60\n - name: "publish installer"\n command: "ci/publish-installer.sh"\n agents:\n queue: "release-build"\n timeout_in_minutes: 5\n - wait\n - name: "publish docker"\n command: "sdk/docker-solana/build.sh"\n agents:\n queue: "release-build"\n timeout_in_minutes: 60\n - name: "publish crate"\n command: "ci/publish-crate.sh"\n agents:\n queue: "release-build"\n retry:\n manual:\n permit_on_passed: true\n timeout_in_minutes: 240\n branches: "!master"\n - name: "publish tarball (aarch64-apple-darwin)"\n command: "ci/publish-tarball.sh"\n agents:\n queue: "release-build-aarch64-apple-darwin"\n retry:\n manual:\n permit_on_passed: true\n timeout_in_minutes: 60\n - name: "publish tarball (x86_64-apple-darwin)"\n command: "ci/publish-tarball.sh"\n agents:\n queue: "release-build-x86_64-apple-darwin"\n retry:\n manual:\n permit_on_passed: true\n timeout_in_minutes: 60\n
dataset_sample\yaml\solana-labs_solana\ci\buildkite-secondary.yml
buildkite-secondary.yml
YAML
1,397
0.8
0
0.058824
node-utils
110
2024-12-06T07:21:34.705043
BSD-3-Clause
false
2fc2a9724a9d4526fa119d26cfc3de2f
project_id: '2'\napi_token_env: 'CROWDIN_PERSONAL_TOKEN'\nbase_url: 'https://solana.crowdin.com'\npreserve_hierarchy: true\nfiles: [\n # JSON translation files\n {\n source: '/i18n/en/**/*',\n translation: '/i18n/%two_letters_code%/**/%original_file_name%',\n },\n # Docs Markdown files\n {\n source: '/src/**/*.md',\n translation: '/i18n/%two_letters_code%/docusaurus-plugin-content-docs/current/**/%original_file_name%',\n },\n {\n source: '/src/**/*.mdx',\n translation: '/i18n/%two_letters_code%/docusaurus-plugin-content-docs/current/**/%original_file_name%',\n },\n # Custom sidebar category files\n {\n source: '/src/**/*.json',\n translation: '/i18n/%two_letters_code%/docusaurus-plugin-content-docs/current/**/%original_file_name%',\n },\n ]\n
dataset_sample\yaml\solana-labs_solana\docs\crowdin.yml
crowdin.yml
YAML
797
0.8
0
0.12
python-kit
53
2024-03-09T16:19:25.226041
BSD-3-Clause
false
068a7bb166f5d6d6dd84232fe18da445
apiVersion: 1\n\nproviders:\n- name: 'InfluxDB'\n orgId: 1\n folder: ''\n type: file\n disableDeletion: false\n editable: true\n options:\n path: /etc/grafana/provisioning/dashboards
dataset_sample\yaml\solana-labs_solana\metrics\scripts\grafana-provisioning\dashboards\dashboard.yml
dashboard.yml
YAML
181
0.7
0
0
python-kit
513
2025-01-22T10:49:41.920231
MIT
false
611785bdf81cbbc954feb1501854a079
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO performance testnet CPU only"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-cpu-only"\n ENABLE_GPU: "false"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 4\n NUMBER_OF_CLIENT_NODES: 2\n CLIENT_OPTIONS: "bench-tps=2=--tx_count 20000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\deprecated-testcases\colo-cpu-only-perf.yml
colo-cpu-only-perf.yml
YAML
566
0.7
0
0
python-kit
632
2024-12-14T13:53:47.080046
MIT
true
3fcbed9b568a551042fe5d25d59c2861
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO performance testnet GPU enabled - High Tx Count"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-gpu-enabled"\n ENABLE_GPU: "true"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 4\n NUMBER_OF_CLIENT_NODES: 2\n CLIENT_OPTIONS: "bench-tps=2=--tx_count 30000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\deprecated-testcases\colo-gpu-perf-high-txcount.yml
colo-gpu-perf-high-txcount.yml
YAML
587
0.7
0
0
awesome-app
486
2025-04-12T22:28:09.281005
MIT
true
791838f8f9d4c219d237206a0346e011
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO performance testnet GPU enabled"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-gpu-enabled"\n ENABLE_GPU: "true"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 4\n NUMBER_OF_CLIENT_NODES: 2\n CLIENT_OPTIONS: "bench-tps=2=--tx_count 20000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\deprecated-testcases\colo-gpu-perf.yml
colo-gpu-perf.yml
YAML
571
0.7
0
0
awesome-app
371
2023-08-10T00:41:26.580964
Apache-2.0
true
5b4b2811b350cdabacef188d1c1d04af
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 100 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 100\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 2\n CLIENT_OPTIONS: "bench-tps=2=--tx_count 15000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n ALLOW_BOOT_FAILURES: "true"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\deprecated-testcases\gce-gpu-perf-100-node.yml
gce-gpu-perf-100-node.yml
YAML
831
0.7
0
0
awesome-app
693
2025-03-04T05:35:44.167116
MIT
true
17824a580a8a2bdab456785c06d027ab
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Colo - CPU Only - Partial Loss 3 Partitions"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-cpu-only"\n NUMBER_OF_VALIDATOR_NODES: 2\n ENABLE_GPU: "false"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=2=--tx_count 5000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n APPLY_PARTITIONS: "true"\n NETEM_CONFIG_FILE: "system-test/netem-configs/partial-loss-three-partitions"\n PARTITION_ACTIVE_DURATION: 30\n PARTITION_INACTIVE_DURATION: 30\n PARTITION_ITERATION_COUNT: 5\n TEST_TYPE: "partition"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\colo-3-partition.yml
colo-3-partition.yml
YAML
760
0.7
0
0
awesome-app
933
2025-06-29T20:03:15.452426
GPL-3.0
true
42981d7a4e270077bda9d3499768e82b
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Colo - CPU Only - 1 minute partition then 5 minute stabilization"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-cpu-only"\n NUMBER_OF_VALIDATOR_NODES: 2\n ENABLE_GPU: "false"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 5000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n APPLY_PARTITIONS: "true"\n NETEM_CONFIG_FILE: "system-test/netem-configs/partial-loss-three-partitions"\n PARTITION_ACTIVE_DURATION: 60\n PARTITION_INACTIVE_DURATION: 300\n PARTITION_ITERATION_COUNT: 1\n TEST_TYPE: "partition"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\colo-partition-once-then-stabilize.yml
colo-partition-once-then-stabilize.yml
YAML
782
0.7
0
0
python-kit
967
2024-07-29T23:10:57.641477
MIT
true
451f3e23f2caef3b479d7d4151ae25f2
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - CPU Only 5 Node - Partial Loss 3 Partitions"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n APPLY_PARTITIONS: "true"\n NETEM_CONFIG_FILE: "system-test/netem-configs/partial-loss-three-partitions"\n PARTITION_ACTIVE_DURATION: 30\n PARTITION_INACTIVE_DURATION: 30\n PARTITION_ITERATION_COUNT: 5\n TEST_TYPE: "partition"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\gce-5-node-3-partition.yml
gce-5-node-3-partition.yml
YAML
915
0.7
0
0
react-lib
843
2023-09-10T00:42:29.253195
GPL-3.0
true
f13de858fe2bfa9f35aa87ddbf7da4fe
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - 2 even partitions with full loss"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 5000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n APPLY_PARTITIONS: "true"\n NETEM_CONFIG_FILE: "system-test/netem-configs/complete-loss-two-partitions"\n PARTITION_ACTIVE_DURATION: 60\n PARTITION_INACTIVE_DURATION: 300\n PARTITION_ITERATION_COUNT: 5\n TEST_TYPE: "partition"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\gce-5-node-single-region-2-partitions.yml
gce-5-node-single-region-2-partitions.yml
YAML
903
0.7
0
0
vue-tools
703
2024-02-10T06:33:01.099953
MIT
true
dffa705fa41ee228ab26a43c05aa4667
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - CPU Only - 1 minute partition then 5 minute stabilization"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n APPLY_PARTITIONS: "true"\n NETEM_CONFIG_FILE: "system-test/netem-configs/partial-loss-three-partitions"\n PARTITION_ACTIVE_DURATION: 60\n PARTITION_INACTIVE_DURATION: 300\n PARTITION_ITERATION_COUNT: 1\n TEST_TYPE: "partition"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\gce-partition-once-then-stabilize.yml
gce-partition-once-then-stabilize.yml
YAML
930
0.7
0
0
awesome-app
659
2025-03-28T02:48:43.214076
BSD-3-Clause
true
9dbb564d6fbcbccfc1cc4ebf9a7a891f
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Partition recovery on GCE"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n ENABLE_GPU: "false"\n NUMBER_OF_VALIDATOR_NODES: 9\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n ADDITIONAL_FLAGS: "--dedicated"\n SKIP_PERF_RESULTS: "true"\n EXTRA_PRIMORDIAL_STAKES: 4\n TEST_TYPE: "script"\n WARMUP_SLOTS_BEFORE_TEST: 400\n PRE_PARTITION_DURATION: 120\n PARTITION_DURATION: 360\n PARTITION_INCREMENT: 60\n NETEM_CONFIG_FILE: "system-test/netem-configs/complete-loss-two-partitions"\n CUSTOM_SCRIPT: "system-test/partition-testcases/measure-partition-recovery.sh"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\gce-partition-recovery.yml
gce-partition-recovery.yml
YAML
834
0.7
0
0
vue-tools
643
2024-12-06T23:39:59.551200
MIT
true
e731094b4830a4b8248219d51804d7dc
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - CPU Only 5 Node - 20% network offline with 2 partitions"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n NUMBER_OF_VALIDATOR_NODES: 4\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n APPLY_PARTITIONS: "true"\n NETEM_CONFIG_FILE: "system-test/netem-configs/complete-loss-two-partitions"\n PARTITION_ACTIVE_DURATION: 30\n PARTITION_INACTIVE_DURATION: 30\n PARTITION_ITERATION_COUNT: 5\n TEST_TYPE: "partition"\n EXTRA_PRIMORDIAL_STAKES: 4\n WAIT_FOR_EQUAL_STAKE: "true"\n WARMUP_SLOTS_BEFORE_TEST: 400\n NUMBER_OF_OFFLINE_NODES: 1\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\partition-testcases\gce-partition-with-offline.yml
gce-partition-with-offline.yml
YAML
1,063
0.7
0
0
python-kit
961
2023-08-18T13:42:32.630531
BSD-3-Clause
true
b323b28f3d9fd7456e5aa1186650febd
steps:\n - command: "system-test/testnet-automation.sh"\n label: "AWS - CPU Only 10 Node"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "ec2"\n TESTNET_TAG: "aws-perf-cpu-only"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 10\n ENABLE_GPU: "false"\n # Up to 3.1 GHz Intel Xeon® Platinum 8175, 16 vCPU, 64GB RAM\n VALIDATOR_NODE_MACHINE_TYPE: "m5.4xlarge"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west-1a,us-west-1c,us-east-1a,eu-west-1a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "aws-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\aws-cpu-only-perf-10-node.yml
aws-cpu-only-perf-10-node.yml
YAML
775
0.8
0
0.047619
awesome-app
348
2025-02-17T06:23:35.764031
GPL-3.0
true
f35582ca410e854d3ad48c28f22caf3c
steps:\n - command: "system-test/testnet-automation.sh"\n label: "AWS - CPU Only 5 Node"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "ec2"\n TESTNET_TAG: "aws-perf-cpu-only"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n # Up to 3.1 GHz Intel Xeon® Platinum 8175, 16 vCPU, 64GB RAM\n VALIDATOR_NODE_MACHINE_TYPE: "m5.4xlarge"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west-1a,us-west-1c,us-east-1a,eu-west-1a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "aws-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\aws-cpu-only-perf-5-node.yml
aws-cpu-only-perf-5-node.yml
YAML
773
0.8
0
0.047619
awesome-app
46
2025-02-23T20:24:54.154649
GPL-3.0
true
7504098837fa8132e75a477fb65c636a
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Azure - CPU Only 5 Node"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "azure"\n TESTNET_TAG: "azure-perf-cpu-only"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "Standard_D16s_v3"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "westus"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "azure-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\azure-cpu-only-perf-5-node.yml
azure-cpu-only-perf-5-node.yml
YAML
682
0.7
0
0
vue-tools
471
2024-12-08T01:53:52.113247
Apache-2.0
true
dc2b517092434e5dc4d248479223142a
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO performance testnet CPU only (reduced validator and client count)"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-cpu-only"\n ENABLE_GPU: "false"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 2\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\colo-cpu-only-perf-4-val-1-client.yml
colo-cpu-only-perf-4-val-1-client.yml
YAML
603
0.7
0
0
vue-tools
263
2024-07-29T05:59:32.640870
GPL-3.0
true
9276a89b07a9772a193f320cea93b272
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO performance testnet GPU enabled (reduced validator and client count)"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-gpu-enabled"\n ENABLE_GPU: "true"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 2\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\colo-gpu-perf-4-val-1-client.yml
colo-gpu-perf-4-val-1-client.yml
YAML
608
0.7
0
0
vue-tools
182
2025-01-01T11:43:59.828995
BSD-3-Clause
true
3278bccd6c0901d9dbffd0168d7070d1
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO performance testnet GPU enabled - High Tx Count (reduced validator and client count)"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-gpu-enabled"\n ENABLE_GPU: "true"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 2\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 20000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\colo-gpu-perf-high-txcount-4-val-1-client.yml
colo-gpu-perf-high-txcount-4-val-1-client.yml
YAML
624
0.7
0
0
node-utils
4
2023-09-01T19:13:33.859723
Apache-2.0
true
f4ee8e8db75e74a2ff8b0e4f325e9368
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE performance testnets CPU ONLY"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 10\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-cpu-only-perf-10-node.yml
gce-cpu-only-perf-10-node.yml
YAML
755
0.7
0
0
react-lib
475
2024-06-05T08:54:03.467585
Apache-2.0
true
6a3ac9d930ff141ffefdc8726055fcd2
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - CPU Only 5 Node Single Zone"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-cpu-only-perf-5-node-single-region.yml
gce-cpu-only-perf-5-node-single-region.yml
YAML
714
0.7
0
0
vue-tools
604
2024-06-22T23:41:41.456546
MIT
true
cef563cf6ba44237a87e5a0b7ceece0e
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - CPU Only 5 Node"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-cpu-only-perf-5-node.yml
gce-cpu-only-perf-5-node.yml
YAML
742
0.7
0
0
vue-tools
829
2023-10-26T20:49:06.094902
GPL-3.0
true
da4f58847d3d4a587e66e2c3852ba695
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 10 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 10\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-10-node-single-region.yml
gce-gpu-perf-10-node-single-region.yml
YAML
755
0.7
0
0
vue-tools
714
2025-01-29T07:56:06.045537
BSD-3-Clause
true
9550243e4dd58eed7a483a25d4f61fe8
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 10 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 10\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-10-node.yml
gce-gpu-perf-10-node.yml
YAML
795
0.7
0
0
vue-tools
201
2025-02-12T02:49:01.598606
MIT
true
f844d491679d777f42327c70deb3679b
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 25 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 25\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-25-node-single-region.yml
gce-gpu-perf-25-node-single-region.yml
YAML
755
0.7
0
0
react-lib
145
2023-10-22T03:07:19.881119
BSD-3-Clause
true
c7d0d923e60a9bb8de2d620fc382dd25
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 25 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 25\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-25-node.yml
gce-gpu-perf-25-node.yml
YAML
795
0.7
0
0
node-utils
277
2024-02-22T06:12:29.699319
GPL-3.0
true
71a95e9b33fbcd19de46988dd64fa98a
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 5 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-5-node-single-region.yml
gce-gpu-perf-5-node-single-region.yml
YAML
753
0.7
0
0
awesome-app
761
2024-07-15T23:14:03.515456
Apache-2.0
true
d9cf2a10e714ec11061e322d1fb89af1
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 5 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-5-node.yml
gce-gpu-perf-5-node.yml
YAML
793
0.7
0
0
vue-tools
425
2024-02-26T08:38:17.276548
Apache-2.0
true
fd7ba7500b217db578d90a1eff81b165
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 50 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 50\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n ALLOW_BOOT_FAILURES: "true"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-50-node-single-region.yml
gce-gpu-perf-50-node-single-region.yml
YAML
789
0.7
0
0
react-lib
849
2025-03-09T05:48:42.436573
BSD-3-Clause
true
f5ac5a0c839a1594243fa3e202d53cbf
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - GPU Enabled 50 Nodes"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-gpu-enabled"\n TEST_DURATION_SECONDS: 600\n NUMBER_OF_VALIDATOR_NODES: 50\n ENABLE_GPU: "true"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16 --accelerator count=2,type=nvidia-tesla-v100"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n ALLOW_BOOT_FAILURES: "true"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\gce-gpu-perf-50-node.yml
gce-gpu-perf-50-node.yml
YAML
829
0.7
0
0
node-utils
887
2023-09-13T11:08:56.735697
Apache-2.0
true
d0c72a5c8a613c8a12f1e90e11bff455
steps:\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-5-node-single-region.yml"\n name: "5 Node Test - TPS Report - Single Region"\n agents:\n queue: "pipeline-uploader"\n - wait: ~\n continue_on_failure: true\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-10-node-single-region.yml"\n name: "10 Node Test - TPS Report - Single Region"\n agents:\n queue: "pipeline-uploader"\n - wait: ~\n continue_on_failure: true\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-25-node-single-region.yml"\n name: "25 Node Test - TPS Report - Single Region"\n agents:\n queue: "pipeline-uploader"\n - wait: ~\n continue_on_failure: true\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-50-node-single-region.yml"\n name: "50 Node Test - TPS Report - Single Region"\n agents:\n queue: "pipeline-uploader"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\tps-report-single-region.yml
tps-report-single-region.yml
YAML
1,007
0.7
0
0
node-utils
189
2024-10-20T23:07:46.767754
BSD-3-Clause
true
c9d22134d6a86600f19a6904074a0c1f
steps:\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-5-node.yml"\n name: "5 Node Test - TPS Report"\n agents:\n queue: "pipeline-uploader"\n - wait: ~\n continue_on_failure: true\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-10-node.yml"\n name: "10 Node Test - TPS Report"\n agents:\n queue: "pipeline-uploader"\n - wait: ~\n continue_on_failure: true\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-25-node.yml"\n name: "25 Node Test - TPS Report"\n agents:\n queue: "pipeline-uploader"\n - wait: ~\n continue_on_failure: true\n - command: "buildkite-agent pipeline upload system-test/performance-testcases/gce-gpu-perf-50-node.yml"\n name: "50 Node Test - TPS Report"\n agents:\n queue: "pipeline-uploader"\n
dataset_sample\yaml\solana-labs_solana\system-test\performance-testcases\tps-report.yml
tps-report.yml
YAML
887
0.7
0
0
vue-tools
50
2024-05-26T11:07:56.899935
GPL-3.0
true
556e2321511cf1104044654e5de1a6ab
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Restart test on GCE"\n env:\n UPLOAD_RESULTS_TO_SLACK: "false"\n CLOUD_PROVIDER: "gce"\n ENABLE_GPU: "false"\n NUMBER_OF_VALIDATOR_NODES: 4\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n ADDITIONAL_FLAGS: "--dedicated"\n SKIP_PERF_RESULTS: "true"\n EXTRA_PRIMORDIAL_STAKES: 4\n WAIT_FOR_EQUAL_STAKE: "true"\n TEST_TYPE: "script"\n CONSENSUS_TIMEOUT: 60\n CUSTOM_SCRIPT: "system-test/restart-testcases/restart_test_automation.sh"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\restart-testcases\restart_gce.yml
restart_gce.yml
YAML
635
0.7
0
0
react-lib
662
2025-07-05T17:41:34.216458
BSD-3-Clause
true
04bb20bc609fcfae344ce4237431bdaf
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO 1 hour performance & stability CPU only"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-cpu-only"\n ENABLE_GPU: "false"\n TEST_DURATION_SECONDS: 3600\n NUMBER_OF_VALIDATOR_NODES: 3\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\stability-testcases\colo-long-duration-cpu-only-perf.yml
colo-long-duration-cpu-only-perf.yml
YAML
578
0.7
0
0
react-lib
242
2024-08-20T18:24:08.076490
GPL-3.0
true
34884da3fe165a7776b0867d94875291
steps:\n - command: "system-test/testnet-automation.sh"\n label: "COLO 1 hour performance & stability GPU enabled"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n TESTNET_TAG: "colo-perf-gpu-enabled"\n ENABLE_GPU: "true"\n TEST_DURATION_SECONDS: 3600\n NUMBER_OF_VALIDATOR_NODES: 3\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n ADDITIONAL_FLAGS: ""\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\stability-testcases\colo-long-duration-gpu-perf.yml
colo-long-duration-gpu-perf.yml
YAML
583
0.7
0
0
awesome-app
730
2024-07-13T18:06:21.108096
Apache-2.0
true
089e375e89a252932865aaeb0d9ec444
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - 1 hour perf stability"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-perf-cpu-only"\n TEST_DURATION_SECONDS: 3600\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 1\n CLIENT_OPTIONS: "bench-tps=1=--tx_count 10000 --thread-batch-sleep-ms 250"\n TESTNET_ZONES: "us-west1-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\stability-testcases\gce-perf-stability-5-node-single-region.yml
gce-perf-stability-5-node-single-region.yml
YAML
709
0.7
0
0
node-utils
183
2025-03-23T13:16:56.808466
GPL-3.0
true
3424be928da8de5ad3439c83f49654ef
steps:\n - command: "system-test/testnet-automation.sh"\n label: "GCE - 8 hour Stability - 5 Node"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n TESTNET_TAG: "gce-stability"\n TEST_DURATION_SECONDS: 28800\n NUMBER_OF_VALIDATOR_NODES: 5\n ENABLE_GPU: "false"\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 0\n TESTNET_ZONES: "us-west1-a,us-west1-b,us-central1-a,europe-west4-a"\n USE_PUBLIC_IP_ADDRESSES: "false"\n ADDITIONAL_FLAGS: "--dedicated"\n TEST_TYPE: "fixed_duration"\n agents:\n queue: "stability-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\stability-testcases\gce-stability-5-node.yml
gce-stability-5-node.yml
YAML
675
0.7
0
0
vue-tools
62
2023-12-26T23:52:43.268716
MIT
true
9f98e9c2512e84e14ba6ca3c57d61ac1
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Running Offline Stake Operations Tests on Colo"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "colo"\n ENABLE_GPU: "false"\n TEST_DURATION_SECONDS: 30\n NUMBER_OF_VALIDATOR_NODES: 1\n NUMBER_OF_CLIENT_NODES: 0\n ADDITIONAL_FLAGS: ""\n BOOTSTRAP_VALIDATOR_MAX_STAKE_THRESHOLD: 100\n SKIP_PERF_RESULTS: "true"\n TEST_TYPE: "script"\n CUSTOM_SCRIPT: "system-test/stake-operations-testcases/stake_test_automation.sh"\n agents:\n queue: "colo-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\stake-operations-testcases\offline_stake_colo.yml
offline_stake_colo.yml
YAML
619
0.7
0
0
awesome-app
766
2024-08-26T12:44:38.247049
GPL-3.0
true
7878213058b57866daef85fdd126b50b
steps:\n - command: "system-test/testnet-automation.sh"\n label: "Running Offline Stake Operations Tests on GCE"\n env:\n UPLOAD_RESULTS_TO_SLACK: "true"\n UPLOAD_RESULTS_TO_DISCORD: "true"\n CLOUD_PROVIDER: "gce"\n ENABLE_GPU: "false"\n TEST_DURATION_SECONDS: 30\n NUMBER_OF_VALIDATOR_NODES: 1\n VALIDATOR_NODE_MACHINE_TYPE: "--machine-type n2-standard-16"\n NUMBER_OF_CLIENT_NODES: 0\n ADDITIONAL_FLAGS: "--dedicated"\n BOOTSTRAP_VALIDATOR_MAX_STAKE_THRESHOLD: 100\n SKIP_PERF_RESULTS: "true"\n TEST_TYPE: "script"\n CUSTOM_SCRIPT: "system-test/stake-operations-testcases/stake_test_automation.sh"\n agents:\n queue: "gce-deploy"\n
dataset_sample\yaml\solana-labs_solana\system-test\stake-operations-testcases\offline_stake_gce.yml
offline_stake_gce.yml
YAML
694
0.7
0
0
node-utils
769
2024-12-15T05:39:34.579399
GPL-3.0
true
ac49e25a3291e2fc7b02474b43147b4a
# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: sonarr\nko_fi: # Replace with a single Ko-fi username\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\notechie: # Replace with a single Otechie username\ncustom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']\n
dataset_sample\yaml\Sonarr_Sonarr\FUNDING.yml
FUNDING.yml
YAML
669
0.8
0
0.090909
react-lib
383
2023-08-23T01:23:26.850867
Apache-2.0
false
d12b550b7a248d07f727ff950bf57994
version: 2\n\nupdates:\n\n - package-ecosystem: "github-actions"\n directory: "/"\n schedule:\n interval: "weekly"\n
dataset_sample\yaml\spatie_browsershot\.github\dependabot.yml
dependabot.yml
YAML
120
0.7
0
0
awesome-app
372
2024-10-22T08:56:56.931130
MIT
false
3d751e6f41274e60e26dfdb58b48021a
blank_issues_enabled: false\ncontact_links:\n - name: Ask a Question\n url: https://github.com/spatie/browsershot/discussions/new?category=q-a\n about: Ask the community for help\n - name: Feature Request\n url: https://github.com/spatie/browsershot/discussions/new?category=ideas\n about: Share ideas for new features\n - name: Bug Report\n url: https://github.com/spatie/browsershot/issues/new\n about: Report a reproducable bug\n
dataset_sample\yaml\spatie_browsershot\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
460
0.8
0.181818
0
awesome-app
433
2024-03-20T02:05:06.742544
GPL-3.0
false
b5920ff9b5fd7fbaeaebf255d88980dd
name: dependabot-auto-merge\non: pull_request_target\n\npermissions:\n pull-requests: write\n contents: write\n\njobs:\n dependabot:\n runs-on: ubuntu-latest\n if: ${{ github.actor == 'dependabot[bot]' }}\n steps:\n \n - name: Dependabot metadata\n id: metadata\n uses: dependabot/fetch-metadata@v2.3.0\n with:\n github-token: "${{ secrets.GITHUB_TOKEN }}"\n \n - name: Auto-merge Dependabot PRs for semver-minor updates\n if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}\n run: gh pr merge --auto --merge "$PR_URL"\n env:\n PR_URL: ${{github.event.pull_request.html_url}}\n GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}\n \n - name: Auto-merge Dependabot PRs for semver-patch updates\n if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}\n run: gh pr merge --auto --merge "$PR_URL"\n env:\n PR_URL: ${{github.event.pull_request.html_url}}\n GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}\n
dataset_sample\yaml\spatie_browsershot\.github\workflows\dependabot-auto-merge.yml
dependabot-auto-merge.yml
YAML
1,054
0.7
0.15625
0
react-lib
125
2024-04-29T01:36:18.756528
GPL-3.0
false
b246702958e506df46ad2310ff909dd7
name: Fix PHP code style issues\n\non:\n push:\n paths:\n - '**.php'\n\npermissions:\n contents: write\n\njobs:\n php-code-styling:\n runs-on: ubuntu-latest\n timeout-minutes: 5\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v4\n with:\n ref: ${{ github.head_ref }}\n\n - name: Fix PHP code style issues\n uses: aglipanci/laravel-pint-action@2.5\n\n - name: Commit changes\n uses: stefanzweifel/git-auto-commit-action@v5\n with:\n commit_message: Fix styling\n
dataset_sample\yaml\spatie_browsershot\.github\workflows\fix-php-code-style-issues.yml
fix-php-code-style-issues.yml
YAML
533
0.7
0
0
react-lib
815
2024-04-27T00:38:49.350334
GPL-3.0
false
dceebfba448339b195846f5c7f3bc82a
name: "Update Changelog"\n\non:\n release:\n types: [released]\n\njobs:\n update:\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v4\n with:\n ref: main\n\n - name: Update Changelog\n uses: stefanzweifel/changelog-updater-action@v1\n with:\n latest-version: ${{ github.event.release.name }}\n release-notes: ${{ github.event.release.body }}\n\n - name: Commit updated CHANGELOG\n uses: stefanzweifel/git-auto-commit-action@v5\n with:\n branch: main\n commit_message: Update CHANGELOG\n file_pattern: CHANGELOG.md\n
dataset_sample\yaml\spatie_browsershot\.github\workflows\update-changelog.yml
update-changelog.yml
YAML
645
0.7
0
0
python-kit
188
2023-10-09T21:46:49.865173
GPL-3.0
false
f64f9562ec387affbc72226dffcdebca
version: "2"\nplugins:\n rubocop:\n enabled: true\n checks:\n Rubocop/Naming/RescuedExceptionsVariableName:\n enabled: false\n Rubocop/Layout/AlignArguments:\n enabled: false\n Rubocop/Style/MultilineWhenThen:\n enabled: false\n Rubocop/Layout/SpaceAroundOperators:\n enabled: false\n Rubocop/Style/FormatStringToken:\n enabled: false\n config:\n file: .rubocop.yml\n channel: "rubocop-1-50-3"\nexclude_patterns:\n - "**/bin/"\n - "**/script/"\n - "**/vendor/"\n - "**/spec/"\n - "public/"\n - "sample/db/samples"\n
dataset_sample\yaml\spree_spree\.codeclimate.yml
.codeclimate.yml
YAML
574
0.7
0
0
vue-tools
792
2024-03-28T03:51:52.436678
Apache-2.0
false
09813d55ff2408c9ee173492e40b11f5
require: rubocop-rspec\n\nAllCops:\n TargetRubyVersion: 3.0\n Exclude:\n - "**/sandbox/**/*"\n - "**/db/migrate/*"\n - "**/Gemfile"\n - "**/Gemfile.lock"\n - "**/Rakefile"\n - "**/rails"\n - "**/*.gemspec"\n - "**/dummy/**/*"\n - "**/vendor/**/*"\n - "**/spec_helper.rb"\n - "**/templates/**/*"\n\nLayout/MultilineOperationIndentation:\n EnforcedStyle: indented\n\nLayout/ParameterAlignment:\n Enabled: false\n\nMetrics/ClassLength:\n CountComments: false\n Max: 150\n\nMetrics/ModuleLength:\n CountComments: false\n Max: 250\n Exclude:\n - "**/spec/**/*"\n\nStyle/Documentation:\n Enabled: false\n\nLayout/LineLength:\n Max: 150\n Exclude:\n - "**/spec/**/*"\n\nMetrics/MethodLength:\n CountComments: false\n Max: 50\n\nMetrics/BlockLength:\n CountComments: false\n Max: 50\n Exclude:\n - "**/spec/**/*"\n - "**/*.rake"\n - "**/factories/**/*"\n - "**/config/routes.rb"\n - "**/lib/**/testing_support/**/*"\n\nMetrics/AbcSize:\n Max: 45\n\nStyle/StringLiterals:\n EnforcedStyle: single_quotes\n\nLayout/DotPosition:\n EnforcedStyle: trailing\n Enabled: true\n\nLayout/SpaceInsideArrayLiteralBrackets:\n Exclude:\n - "api/spec/integration/**/*.rb"\n - "api/lib/spree/api/testing_support/v2/platform_contexts.rb"\n\nStyle/FrozenStringLiteralComment:\n Enabled: false\n\nStyle/ClassVars:\n Exclude:\n - "core/lib/spree/permitted_attributes.rb"\n\nStyle/RegexpLiteral:\n Enabled: false\n\nStyle/WordArray:\n Enabled: false\n\nStyle/SymbolArray:\n Enabled: false\n\nStyle/SymbolProc:\n Exclude:\n - "**/app/serializers/**/*"\n\nStyle/GuardClause:\n Enabled: false\n\nStyle/TrailingCommaInArrayLiteral:\n Enabled: false\n\nStyle/TrailingCommaInHashLiteral:\n Enabled: false\n\nStyle/BarePercentLiterals:\n Enabled: false\n\nStyle/MutableConstant:\n Enabled: false\n\nStyle/PercentLiteralDelimiters:\n Enabled: false\n\nStyle/IfUnlessModifier:\n Enabled: false\n\nNaming/VariableNumber:\n Enabled: false\n\nStyle/RedundantPercentQ:\n Enabled: false\n\nLint/ParenthesesAsGroupedExpression:\n Enabled: false\n\nStyle/NumericPredicate:\n Enabled: false\n\nMetrics/PerceivedComplexity:\n Max: 10\n\nMetrics/CyclomaticComplexity:\n Max: 10\n\nStyle/ClassAndModuleChildren:\n Enabled: false\n\nStyle/AndOr:\n Exclude:\n - "**/*controller.rb"\n\nStyle/HashEachMethods:\n Enabled: false\n\nStyle/HashTransformKeys:\n Enabled: false\n\nStyle/HashTransformValues:\n Enabled: false\n\nStyle/Alias:\n Enabled: false\n\nRSpec/NestedGroups:\n Max: 7\n\nLint/AmbiguousBlockAssociation:\n Exclude:\n - "**/spec/**/*"\n\nStyle/NumericLiterals:\n Enabled: false\n\nRSpec/DescribeClass:\n Enabled: false\n\nRSpec/VerifiedDoubles:\n Enabled: false\n\nRSpec/MessageChain:\n Enabled: false\n\nRSpec/AnyInstance:\n Enabled: false\n\nRSpec/InstanceVariable:\n Enabled: false\n\nRSpec/ContextWording:\n Enabled: false\n\nRSpec/ExpectInHook:\n Enabled: false\n\nRSpec/ExampleLength:\n Enabled: false\n\nRSpec/MessageSpies:\n Enabled: false\n\nRSpec/NamedSubject:\n Enabled: false\n\nRSpec/MultipleExpectations:\n Enabled: false\n\nRSpec/LetSetup:\n Enabled: false\n\nRSpec/SubjectStub:\n Enabled: false\n\nRSpec/VoidExpect:\n Enabled: false\n\nRSpec/BeforeAfterAll:\n Enabled: false\n
dataset_sample\yaml\spree_spree\.rubocop.yml
.rubocop.yml
YAML
3,087
0.95
0
0
react-lib
606
2023-07-20T15:50:22.236276
BSD-3-Clause
false
cec1fe19a6b720ecb6dcb9d6d09a72cb
---\ninclude:\n- "**/*.rb"\nexclude:\n- "*/spec/**/*"\n- "*test/**/*"\n- "*/vendor/**/*"\n- vendor/**/*\n- ".bundle/**/*"\n- sample/**/*\n- sandbox/**/*\n- pkg/**/*\n- cli/**/*.gemspec\nrequire: []\ndomains: []\nreporters:\n- rubocop\n- require_not_found\nrequire_paths: []\nmax_files: 50_000\n
dataset_sample\yaml\spree_spree\.solargraph.yml
.solargraph.yml
YAML
274
0.95
0
0
vue-tools
997
2025-01-03T04:41:53.829025
Apache-2.0
false
56223ec808a848d510ccab4486252531
version: 2.1\n\ndefaults: &defaults\n environment: &environment\n CIRCLE_TEST_REPORTS: /tmp/test-results\n CIRCLE_ARTIFACTS: /tmp/test-artifacts\n BUNDLE_JOBS: 4\n BUNDLE_RETRY: 3\n BUNDLE_PATH: ~/spree/vendor/bundle\n DB_HOST: localhost\n DB: postgres # default value, this will speed up bundle install for all postgres builds\n DB_USERNAME: postgres\n working_directory: ~/spree\n docker:\n - image: &ruby_image cimg/ruby:3.3.0-browsers\n\ncommands:\n bundle_install:\n steps:\n - restore_cache:\n keys:\n - spree-bundle-v11-ruby-{{ checksum ".ruby-version" }}-{{ .Branch }}\n - spree-bundle-v11-ruby-{{ checksum ".ruby-version" }}\n - install_libvips\n - run:\n name: Install global dependencies\n command: bundle check || bundle install\n - run:\n name: Install per-project gem dependencies\n command: bin/build-ci.rb install\n install_libvips:\n steps:\n - run:\n name: Install libvips\n command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 32EE5355A6BC6E42 && sudo apt-get update && sudo apt-get install libvips42\n store_all_artifacts:\n steps:\n - store_artifacts:\n path: /tmp/test-artifacts\n destination: test-artifacts\n - store_artifacts:\n path: /tmp/failed_tests\n destination: failed_tests\n - store_artifacts:\n path: /tmp/test-results\n destination: raw-test-output\n - store_test_results:\n path: /tmp/test-results\njobs:\n build:\n <<: *defaults\n steps:\n - checkout\n - bundle_install\n - save_cache:\n key: spree-bundle-v11-ruby-{{ checksum ".ruby-version" }}-{{ .Branch }}\n paths:\n - ~/spree/vendor/bundle\n test: &test\n <<: *defaults\n docker:\n - image: *ruby_image\n - image: cimg/postgres:16.2\n environment:\n POSTGRES_USER: postgres\n steps: &default_steps\n - checkout\n - attach_workspace:\n at: /tmp\n - install_libvips\n - bundle_install\n - run:\n name: Run tests\n command: bin/build-ci.rb test\n - store_all_artifacts\n\n test_mysql: &test_mysql\n <<: *test\n docker:\n - image: *ruby_image\n - image: cimg/mysql:8.0\n command: [--default-authentication-plugin=mysql_native_password]\n environment:\n MYSQL_ROOT_PASSWORD: password\n environment: &mysql_environment\n <<: *environment\n DB: mysql\n DB_USERNAME: root\n DB_PASSWORD: password\n DB_HOST: 127.0.0.1\n\n # postgres tests\n test_core_postgres:\n <<: *test\n parallelism: 6\n environment:\n <<: *environment\n PROJECTS: core\n test_api_postgres:\n <<: *test\n parallelism: 4\n environment:\n <<: *environment\n PROJECTS: api\n test_admin_postgres:\n <<: *test\n environment:\n <<: *environment\n PROJECTS: admin\n test_storefront_postgres:\n <<: *test\n environment:\n <<: *environment\n PROJECTS: storefront\n test_other_postgres:\n <<: *test\n environment:\n <<: *environment\n PROJECTS: emails,sample\n\n # mysql tests\n test_core_mysql:\n <<: *test_mysql\n parallelism: 6\n environment:\n <<: *mysql_environment\n PROJECTS: core\n test_api_mysql:\n <<: *test_mysql\n parallelism: 4\n environment:\n <<: *mysql_environment\n PROJECTS: api\n test_admin_mysql:\n <<: *test_mysql\n environment:\n <<: *mysql_environment\n PROJECTS: admin\n test_storefront_mysql:\n <<: *test_mysql\n environment:\n <<: *mysql_environment\n PROJECTS: storefront\n test_other_mysql:\n <<: *test_mysql\n environment:\n <<: *mysql_environment\n PROJECTS: emails,sample\n\nworkflows:\n main:\n jobs:\n - build\n # postgres tests\n - test_core_postgres:\n requires:\n - build\n - test_api_postgres:\n requires:\n - build\n - test_admin_postgres:\n requires:\n - build\n - test_storefront_postgres:\n requires:\n - build\n - test_other_postgres:\n requires:\n - build\n\n # mysql tests\n - test_core_mysql:\n requires:\n - build\n - test_core_postgres\n - test_api_mysql:\n requires:\n - build\n - test_api_postgres\n - test_admin_mysql:\n requires:\n - build\n - test_admin_postgres\n - test_storefront_mysql:\n requires:\n - build\n - test_storefront_postgres\n - test_other_mysql:\n requires:\n - build\n - test_other_postgres
dataset_sample\yaml\spree_spree\.circleci\config.yml
config.yml
YAML
4,687
0.95
0.005263
0.021739
python-kit
344
2024-03-22T00:36:06.557592
MIT
false
6b8a249a7aeeb967b58271df41ff14dc
version: 2\nupdates:\n- package-ecosystem: bundler\n directory: "/core"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n- package-ecosystem: bundler\n directory: "/cli"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n- package-ecosystem: bundler\n directory: "/api"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n- package-ecosystem: bundler\n directory: "/sample"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n- package-ecosystem: bundler\n directory: "/storefront"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n- package-ecosystem: bundler\n directory: "/admin"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n- package-ecosystem: bundler\n directory: "/emails"\n schedule:\n interval: daily\n open-pull-requests-limit: 10\n
dataset_sample\yaml\spree_spree\.github\dependabot.yml
dependabot.yml
YAML
820
0.7
0
0
vue-tools
690
2024-02-19T17:55:38.823612
Apache-2.0
false
472f4d4d2a33a3a123cd5bad71376430
name: "CLA Assistant"\non:\n issue_comment:\n types: [created]\n pull_request_target:\n types: [opened,closed,synchronize]\n\n# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings\npermissions:\n actions: write\n contents: write # this can be 'read' if the signatures are in remote repository\n pull-requests: write\n statuses: write\n\njobs:\n CLAAssistant:\n runs-on: ubuntu-latest\n steps:\n - name: "CLA Assistant"\n if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'\n uses: contributor-assistant/github-action@v2.5.1\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n # the below token should have repo scope and must be manually added by you in the repository's secret\n # This token is required only if you have configured to store the signatures in a remote repository/organization\n # PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}\n with:\n path-to-signatures: '.github/signatures/version1/cla.json'\n path-to-document: 'https://github.com/spree/spree/blob/main/.github/CLA.md' # e.g. a CLA or a DCO document\n # branch should not be protected\n branch: 'main'\n allowlist: user1,bot*\n\n # the followings are the optional inputs - If the optional inputs are not given, then default values will be taken\n #remote-organization-name: enter the remote organization name where the signatures should be stored (Default is storing the signatures in the same repository)\n #remote-repository-name: enter the remote repository name where the signatures should be stored (Default is storing the signatures in the same repository)\n #create-file-commit-message: 'For example: Creating file for storing CLA Signatures'\n #signed-commit-message: 'For example: $contributorName has signed the CLA in $owner/$repo#$pullRequestNo'\n #custom-notsigned-prcomment: 'pull request comment with Introductory message to ask new contributors to sign'\n #custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA'\n #custom-allsigned-prcomment: 'pull request comment when all contributors has signed, defaults to **CLA Assistant Lite bot** All Contributors have signed the CLA.'\n #lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true)\n #use-dco-flag: true - If you are using DCO instead of CLA\n
dataset_sample\yaml\spree_spree\.github\workflows\cla.yml
cla.yml
YAML
2,684
0.95
0.116279
0.375
python-kit
928
2024-04-07T16:56:59.973058
BSD-3-Clause
false
c36f0f6db4228abe29972d71f9484d4d
---\nname: Lint Code Spelling\n\non: [pull_request]\n\njobs:\n codespell:\n name: Check spelling all files with codespell\n runs-on: ubuntu-latest\n strategy:\n matrix:\n python-version: [3.8]\n steps:\n - uses: actions/checkout@v2\n - name: Set up Python ${{ matrix.python-version }}\n uses: actions/setup-python@v2\n with:\n python-version: ${{ matrix.python-version }}\n - name: Install dependencies\n run: |\n python -m pip install --upgrade pip\n pip install codespell\n if [ -f requirements.txt ]; then pip install -r requirements.txt; fi\n - name: Check spelling with codespell\n run: codespell --ignore-words=codespell.txt --skip="./vendor/*,**/vendor/*" || exit 0\n misspell:\n name: Check spelling all files in commit with misspell\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v2\n - name: Install\n run: wget -O - -q https://git.io/misspell | sh -s -- -b .\n - name: Misspell\n run: git ls-files --empty-directory | grep -v "vendor/" | xargs ./misspell -i 'aircrafts,devels,invertions' -error\n
dataset_sample\yaml\spree_spree\.github\workflows\spelling_lint.yml
spelling_lint.yml
YAML
1,135
0.95
0.029412
0
react-lib
345
2025-06-02T21:44:13.408650
Apache-2.0
false
854f69237500ff7c53fdca6134422454
# i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks\n\n# The "main" locale.\nbase_locale: en\n## All available locales are inferred from the data by default. Alternatively, specify them explicitly:\n# locales: [es, fr]\n## Reporting locale, default: en. Available: en, ru.\n# internal_locale: en\n\n# Read and write translations.\ndata:\n ## Translations are read from the file system. Supported format: YAML, JSON.\n ## Provide a custom adapter:\n # adapter: I18n::Tasks::Data::FileSystem\n\n # Locale files or `Dir.glob` patterns where translations are read from:\n read:\n ## Default:\n - config/locales/%{locale}.yml\n ## More files:\n # - config/locales/**/*.%{locale}.yml\n\n # Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom:\n # `i18n-tasks normalize -p` will force move the keys according to these rules\n write:\n ## For example, write devise and simple form keys to their respective files:\n # - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml']\n ## Catch-all default:\n # - config/locales/%{locale}.yml\n\n # External locale data (e.g. gems).\n # This data is not considered unused and is never written to.\n external:\n ## Example (replace %#= with %=):\n # - "<%#= %x[bundle info vagrant --path].chomp %>/templates/locales/%{locale}.yml"\n - "<%= %x[bundle info spree_core --path].chomp %>/config/locales/%{locale}.yml"\n\n ## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class.\n # router: conservative_router\n\n yaml:\n write:\n # do not wrap lines at 80 characters\n line_width: -1\n\n ## Pretty-print JSON:\n # json:\n # write:\n # indent: ' '\n # space: ' '\n # object_nl: "\n"\n # array_nl: "\n"\n\n# Find translate calls\nsearch:\n ## Paths or `Find.find` patterns to search in:\n # paths:\n # - app/\n\n ## Root directories for relative keys resolution.\n # relative_roots:\n # - app/controllers\n # - app/helpers\n # - app/mailers\n # - app/presenters\n # - app/views\n\n ## Directories where method names which should not be part of a relative key resolution.\n # By default, if a relative translation is used inside a method, the name of the method will be considered part of the resolved key.\n # Directories listed here will not consider the name of the method part of the resolved key\n #\n # relative_exclude_method_name_paths:\n # -\n\n ## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting:\n ## *.jpg *.jpeg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less\n ## *.yml *.json *.zip *.tar.gz *.swf *.flv *.mp3 *.wav *.flac *.webm *.mp4 *.ogg *.opus *.webp *.map *.xlsx\n exclude:\n - app/assets/images\n - app/assets/fonts\n - app/assets/videos\n - app/assets/builds\n\n ## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`:\n ## If specified, this settings takes priority over `exclude`, but `exclude` still applies.\n # only: ["*.rb", "*.html.slim"]\n\n ## If `strict` is `false`, guess usages such as t("categories.#{category}.title"). The default is `true`.\n strict: false\n\n ## Allows adding ast_matchers for finding translations using the AST-scanners\n ## The available matchers are:\n ## - RailsModelMatcher\n ## Matches ActiveRecord translations like\n ## User.human_attribute_name(:email) and User.model_name.human\n ## - DefaultI18nSubjectMatcher\n ## Matches ActionMailer's default_i18n_subject method\n ##\n ## To implement your own, please see `I18n::Tasks::Scanners::AstMatchers::BaseMatcher`.\n # ast_matchers:\n # - 'I18n::Tasks::Scanners::AstMatchers::RailsModelMatcher'\n # - 'I18n::Tasks::Scanners::AstMatchers::DefaultI18nSubjectMatcher'\n\n ## Multiple scanners can be used. Their results are merged.\n ## The options specified above are passed down to each scanner. Per-scanner options can be specified as well.\n ## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example\n\n## Translation Services\n# translation:\n# # Google Translate\n# # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate\n# google_translate_api_key: "AbC-dEf5"\n# # DeepL Pro Translate\n# # Get an API key and subscription at https://www.deepl.com/pro to use DeepL Pro\n# deepl_api_key: "48E92789-57A3-466A-9959-1A1A1A1A1A1A"\n# # deepl_host: "https://api.deepl.com"\n# # deepl_version: "v2"\n# # deepl_glossary_ids:\n# # - f28106eb-0e06-489e-82c6-8215d6f95089\n# # - 2c6415be-1852-4f54-9e1b-d800463496b4\n# # add additional options to the DeepL.translate call: https://www.deepl.com/docs-api/translate-text/translate-text/\n# deepl_options:\n# formality: prefer_less\n# # OpenAI\n# openai_api_key: "sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"\n# # openai_model: "gpt-3.5-turbo" # see https://platform.openai.com/docs/models\n# # may contain `%{from}` and `%{to}`, which will be replaced by source and target locale codes, respectively (using `Kernel.format`)\n# # openai_system_prompt: >-\n# # You are a professional translator that translates content from the %{from} locale\n# # to the %{to} locale in an i18n locale array.\n# #\n# # The array has a structured format and contains multiple strings. Your task is to translate\n# # each of these strings and create a new array with the translated strings.\n# #\n# # HTML markups (enclosed in < and > characters) must not be changed under any circumstance.\n# # Variables (starting with %%{ and ending with }) must not be changed under any circumstance.\n# #\n# # Keep in mind the context of all the strings for a more accurate translation.\n\n## Do not consider these keys missing:\n# ignore_missing:\n# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'\n# - '{devise,simple_form}.*'\n\n## Consider these keys used:\n# ignore_unused:\n# - 'activerecord.attributes.*'\n# - '{devise,kaminari,will_paginate}.*'\n# - 'simple_form.{yes,no}'\n# - 'simple_form.{placeholders,hints,labels}.*'\n# - 'simple_form.{error_notification,required}.:'\nignore_unused:\n - 'spree.admin.bulk_ops.products.body.*'\n - 'spree.admin.bulk_ops.products.title.*'\n - 'spree.admin.bulk_ops.users.body.*'\n - 'spree.admin.bulk_ops.users.title.*'\n - 'spree.admin.display_on_options.*'\n - 'spree.admin.order.events.*'\n - 'spree.admin.orders.no_email_present'\n - 'spree.admin.orders.payment_link_sent'\n - 'spree.admin.store_setup_tasks.*'\n - 'spree.admin.taxon_rules.*'\n - 'spree.admin.webhooks_subscribers.*'\n\n## Exclude these keys from the `i18n-tasks eq-base' report:\n# ignore_eq_base:\n# all:\n# - common.ok\n# fr,es:\n# - common.brand\n\n## Exclude these keys from the `i18n-tasks check-consistent-interpolations` report:\n# ignore_inconsistent_interpolations:\n# - 'activerecord.attributes.*'\n\n## Ignore these keys completely:\n# ignore:\n# - kaminari.*\n\n## Sometimes, it isn't possible for i18n-tasks to match the key correctly,\n## e.g. in case of a relative key defined in a helper method.\n## In these cases you can use the built-in PatternMapper to map patterns to keys, e.g.:\n#\n# <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',\n# only: %w(*.html.haml *.html.slim),\n# patterns: [['= title\b', '.page_title']] %>\n#\n# The PatternMapper can also match key literals via a special %{key} interpolation, e.g.:\n#\n<% I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper', patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %>\n
dataset_sample\yaml\spree_spree\admin\config\i18n-tasks.yml
i18n-tasks.yml
YAML
7,669
0.95
0.036842
0.820359
vue-tools
355
2024-05-30T09:56:13.156565
MIT
false
9c73c7245bb0e8878c69253f228b57fc
---\nen:\n spree:\n admin:\n amount_spent: Amount spent\n audit_log: Audit Log\n avg_order_value: Avg. Order Value\n back_to_dashboard: Back to Dashboard\n bulk_ops:\n products:\n body:\n add_tags: 'Select tags to add to the products:'\n add_to_brand: 'Select which brand to add the products to:'\n add_to_taxons: 'Select which taxons to add the products to:'\n remove_from_taxons: 'Select which taxons to remove the products from:'\n remove_tags: 'Select tags to remove from the products:'\n set_return_rule: Select return rule for products\n set_status:\n active: Setting products to active will make those products available on the storefront.\n archived: Setting products to archived will hide them from storefront.\n draft: Setting products to draft will hide them from storefront.\n status_updated: Status updated\n title:\n add_tags: Add tags\n add_to_brand: Add to brand\n add_to_taxons: Add to taxons\n remove_from_brand: Remove from brand\n remove_from_taxons: Remove from taxons\n remove_tags: Remove tags\n set_return_rule: Set Return Rule\n set_size_chart: Set Size Chart\n set_status: Set as %{status}\n users:\n body:\n add_tags: 'Select tags to add to the customers:'\n remove_tags: 'Select tags to remove from the customers:'\n title:\n add_tags: Add tags\n remove_tags: Remove tags\n checkout_settings:\n checkout_message_description: Visible to your customers on the checkout page in the right sidebar.\n guest_checkout:\n description: Allow customers to checkout without creating an account.\n label: Allow guest checkout\n policy_copy: Checkout footer links are added automatically based on the %{policies_link} content.\n copied: Copied!\n copy_payment_link: Copy Payment Link\n copy_to_clipboard: Copy to clipboard\n coupon_codes:\n unused: Unused\n used: Used\n created_at: Created At\n dashboard:\n getting_started:\n description: Everything you need to set up to start selling.\n hi: Hi\n top_products: Top products\n view_report: View report\n whats_happening_on: Here's what's happening on <strong>%{store_name}</strong> today.\n digital_shipment_fulfillment_note: This shipment will be marked as fulfilled once the user downloads the digital product\n display_on_options:\n back_end: Only on admin panel\n both: On both admin panel & storefront\n front_end: Only on storefront\n edit_billing_address: Edit billing address\n edit_contact_information: Edit contact information\n edit_profile: Edit Profile\n edit_shipping_address: Edit shipping address\n edit_theme: Edit theme\n errors: Errors\n execution_time: Execution Time\n export_all: Export all records (can be slow for large datasets)\n export_created: Your export was started. You will receive an email with a download link when it is ready!\n export_only_filtered_records: Export only filtered records, matching the search criteria\n filters: Filters\n getting_started: Getting started\n integrations:\n invalid_integration_type: This integration is not allowed\n page_subtitle: Connect your store to third-party services to enhance customer experience.\n manage_currencies: Manage Currencies\n manage_properties: Manage Properties\n manage_stock_locations: Manage Stock Locations\n manage_taxons: Manage Taxons\n manage_zones: Manage Zones\n name: Name\n navigation:\n nested_under: Nested under\n not_tracking_inventory: Not tracking inventory\n notifications: Notifications\n num_orders: No. of Orders\n oauth_applications:\n last_used: Last used\n list: API keys\n never: Never\n new: New API key\n read_and_write: Read & Write\n read_only: Read Only\n scopes: Scopes\n order:\n events:\n approve: Approve\n cancel: Cancel\n resend: Resend\n resume: Resume\n orders:\n add_user_to_this_order: Add customer to this order\n all_orders: All Orders\n canceled: Canceled\n fulfilled: Fulfilled\n no_email_present: Please add an email address to send the payment link\n orders_to_fulfill: Orders to fulfill\n partially_refunded: Partially Refunded\n payment_link_sent: Payment link was sent to the customer\n refunded: Refunded\n remove_user_from_this_order: Remove customer from this order\n unfulfilled: Unfulfilled\n page_builder:\n background_color: Background color\n border_bottom_width: Border bottom width\n border_color: Border color\n border_top_width: Border top width\n bottom_padding: Bottom padding\n button_alignment: Button alignment\n button_background_color: Button background color\n button_style: Button style\n button_text: Button's text\n button_text_color: Button text color\n category: Category\n description: Description\n description_alignment: Description alignment\n desktop_image_alignment: Image alignment for desktop\n desktop_logo_height: Logo height (desktop)\n heading: Heading\n heading_alignment: Heading alignment\n heading_size: Heading size\n height: Height\n left_aligned: Left aligned\n logo_centered: Logo centered\n max_video_width_on_desktop: Max video width on desktop\n maximum_posts_to_show: Maximum posts to show\n maximum_products_to_show: Maximum products to show\n nav_centered: Nav centered\n not_set: Not set\n posts_to_show: Posts to show\n separated: Separated\n show_more_button: Show explore category button\n show_taxon_image: Show taxon image\n text_color: Text color\n title: Title\n top_padding: Top padding\n use_description_from_admin: Use description from admin\n vertical_alignment: Vertical alignment\n youtube_video_url: Youtube video URL\n personal_details: Personal Details\n products:\n active: Active\n all_statuses: All statuses\n any_stock: Any stock\n archived: Archived\n by_status: By status\n by_stock: By stock\n deleted: Deleted\n draft: Draft\n help_bubble: Draft products aren't available for purchase. Active products are live.\n in_stock: In Stock\n inventory:\n barcode: Barcode (ISBN, UPC, GTIN, etc.)\n sku: SKU (Stock Keeping Unit)\n out_of_stock: Out of Stock\n paused: Paused\n search_results:\n no_products: We couldn't find any products matching your search :(\n seo:\n placeholder: Add a title and description to see how this product might appear in a search engine listing\n status_form:\n available_on: Marks when the product will be released, put a future date to indicate that this is a pre-order\n discontinue_on: Marks when the product should be automatically taken off from your site\n make_active_at: Marks when the product should be automatically promoted to "active" state\n status: Draft products aren't available for purchase. Active products are live.\n stores:\n choose_stores: Choose which stores this product should be available in\n variants:\n option_types_link: To add more option types please go to <a href="%{link}">Option Types</a>\n report_created: Your report is being generated. You will receive an email with a download link when it is ready!\n reset_digital_link_download_limits: Reset download limits\n response_code: Response Code\n selected: selected\n send_payment_link: Send Payment Link\n shipment_transfer:\n wrong_destination: Wrong destination\n stock_transfers:\n add_products_tip: You need to select a destination location first\n store_credit:\n amount_remaining_of_total: "<strong>%{amount}</strong> remaining (<strong>%{total}</strong> total)"\n store_form:\n customer_support_email_help: This email is visible to your Store visitors in the Footer section\n new_order_notifications_email_help: If you want to receive an email notification every time someone places an Order please provide an email address for that notification to be sent to\n store_setup_tasks:\n add_billing_address: Add billing address\n add_products: Add products\n payment_methods:\n copy: In order to collect payments, please setup at least one online payment provider.\n done: You're all set! You can always manage your Payment Methods on <a href="%{link}" data-turbo-frame="_top">this</a> page.\n setup: Setup Payment Methods\n title: Please setup Payment Methods for your store\n set_customer_support_email: Set customer support email\n setup_taxes_collection: Setup taxes collection\n taxes:\n copy: In order to collect taxes, please setup your tax rates.\n done: You're all set! You can always manage your taxes on the <a href="%{link}" data-turbo-frame="_top">settings</a> page.\n setup: Setup Tax Rates\n storefront: Storefront\n successful: Successful\n successfully_reset_digital_links_limit: Download limits have been reset\n taxon_rules:\n all_conditions: all conditions\n any_condition: any condition\n available_on: Available on\n match_policies:\n contains: contains\n does_not_contain: does not contain\n is_equal_to: is equal to\n is_not_equal_to: is not equal to\n on_sale: On sale\n products_must_match: 'Products must match:'\n tag: Product tag\n taxon_type: Taxon type\n taxon_types:\n automatic: Automatic\n automatic_info: Automatically match products to this taxon based on the conditions you set.\n manual: Manual\n manual_info: Curate products manually. You can add or remove them in bulk.\n upload_new_asset: Upload new asset\n user:\n last_order_placed: Last order placed\n no_store_credit: Customer has no Store Credit available\n users:\n filters:\n search_placeholder: Search customers by email or name\n utilities:\n preview: Preview\n variants:\n search_results:\n no_variants: We couldn't find any variants matching your search :(\n variants_form:\n add_option:\n empty: Add options like size or color\n not_empty: Add another option\n compare_at_price_description: This price is used to show marked down price on the product page.\n stock_locations_link: To add more stock locations please go to <a href="%{link}">Stock Locations</a>\n total_inventory_html: 'Total inventory at %{stock_location} location: %{count} available'\n webhooks_subscribers:\n all_events: All Events\n new_webhooks_subscriber: New Webhooks Subscriber\n no_events: No Events\n select_events: Select events\n subscribe_to_all_events: Subscribe to all events\n subscriptions: Subscriptions\n time_of_last_event: Time of Last Event\n webhooks_events: Webhooks Events\n
dataset_sample\yaml\spree_spree\admin\config\locales\en.yml
en.yml
YAML
11,541
0.7
0.026923
0
react-lib
523
2024-07-15T17:33:09.768096
MIT
false
adc860489341ff62c48af9359bdb7420
base_locale: en\ndata:\n yaml:\n write:\n # do not wrap lines at 80 characters\n line_width: -1\n\n# Find translate calls\nsearch:\n paths:\n - '../api/app'\n - '../api/lib'\n\n#### For API v1 only, START ####\n exclude:\n - '../api/app/controllers/spree/api/v1/*'\n - '../api/app/views/*'\n\nignore_unused:\n - 'spree.api.gateway_error'\n - 'spree.api.invalid_api_key'\n - 'spree.api.invalid_resource'\n - 'spree.api.invalid_taxonomy_id'\n - 'spree.api.must_specify_api_key'\n - 'spree.api.negative_quantity'\n - 'spree.api.order.could_not_transition'\n - 'spree.api.order.insufficient_quantity'\n - 'spree.api.order.invalid_shipping_method'\n - 'spree.api.payment.credit_over_limit'\n - 'spree.api.payment.update_forbidden'\n - 'spree.api.shipment.cannot_ready'\n - 'spree.api.shipment_transfer_errors_occurred'\n - 'spree.api.shipment_transfer_success'\n - 'spree.api.stock_location_required'\n - 'spree.api.unauthorized'\n - 'spree.api.wrong_shipment_target'\n#### For API v1 only, END ####\n\n# The PatternMapper for Spree.t\n<% I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper', patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %>\n
dataset_sample\yaml\spree_spree\api\config\i18n-tasks.yml
i18n-tasks.yml
YAML
1,163
0.95
0.025
0.138889
node-utils
523
2023-10-21T22:55:03.332284
GPL-3.0
false
0bffee162f90d660638614a1b6cba49f
---\nen:\n spree:\n api:\n gateway_error: 'There was a problem with the payment gateway: %{text}'\n invalid_api_key: Invalid API key (%{key}) specified.\n invalid_resource: Invalid resource. Please fix errors and try again.\n invalid_taxonomy_id: Invalid taxonomy id.\n must_specify_api_key: You must specify an API key.\n negative_quantity: quantity is negative\n order:\n could_not_transition: The order could not be transitioned. Please fix the errors and try again.\n insufficient_quantity: An item in your cart has become unavailable.\n invalid_shipping_method: Invalid shipping method specified.\n payment:\n credit_over_limit: This payment can only be credited up to %{limit}. Please specify an amount less than or equal to this number.\n update_forbidden: This payment cannot be updated because it is %{state}.\n resource_not_found: The resource you were looking for could not be found.\n shipment:\n cannot_ready: Cannot ready shipment.\n shipment_transfer_errors_occurred: 'Following errors occurred while attempting this action:'\n shipment_transfer_success: Variants successfully transferred\n stock_location_required: A stock_location_id parameter must be provided in order to retrieve stock movements.\n unauthorized: You are not authorized to perform that action.\n v2:\n cart:\n no_coupon_code: No coupon code provided and the Order doesn't have any coupon code promotions applied\n wrong_quantity: Quantity has to be greater than 0\n digitals:\n missing_file: 'Missing Digital Item: attachment'\n unauthorized: Error, you are not authorized to access this asset\n metadata:\n invalid_params: Public and private metadata parameters should be objects\n wishlist:\n errors:\n the_wishlist_could_not_be_destroyed: The wishlist could not be destroyed.\n wrong_quantity: Quantity has to be greater than 0\n wrong_shipment_target: target shipment is the same as original shipment\n
dataset_sample\yaml\spree_spree\api\config\locales\en.yml
en.yml
YAML
2,081
0.85
0.105263
0
awesome-app
818
2025-06-03T16:13:52.040165
MIT
false
386e110da3830ef80067eef7f4667040
AllCops:\n DisplayCopNames: true\n TargetRubyVersion: 3.3\n Include:\n - '**/Gemfile'\n - '**/Rakefile'\n - '**/Appraisals'\n Exclude:\n - 'spec/dummy/**/*'\n - 'lib/generators/**/*'\n\nRails:\n Enabled: true\n\nMetrics/LineLength:\n Max: 150\n\n# DISABLED\n\nStyle/Documentation:\n Enabled: false\n\nStyle/FrozenStringLiteralComment:\n Enabled: false\n
dataset_sample\yaml\spree_spree\cli\lib\spree_cli\templates\extension\.rubocop.yml
.rubocop.yml
YAML
352
0.8
0
0.052632
python-kit
186
2023-09-14T09:39:27.061978
GPL-3.0
false
dacfccfbcd2cf6e8799b47722e931288
version: 2.1\n\ndefaults: &defaults\n environment: &environment\n CIRCLE_TEST_REPORTS: /tmp/test-results\n CIRCLE_ARTIFACTS: /tmp/test-artifacts\n BUNDLE_JOBS: 4\n BUNDLE_RETRY: 3\n BUNDLE_PATH: ~/spree/vendor/bundle\n working_directory: ~/spree\n docker:\n - image: &ruby_image cimg/ruby:3.3-browsers\n\nrun_tests: &run_tests\n <<: *defaults\n steps:\n - checkout\n - restore_cache:\n keys:\n - spree-bundle-{{ .Branch }}\n - spree-bundle\n - run:\n name: Add keyserver\n command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B\n - run:\n name: Install libvips\n command: sudo apt-get update && sudo apt-get install libvips\n - run:\n name: Set bundle path\n command: bundle config --local path vendor/bundle\n - run:\n name: Ensure bundle Install\n command: |\n bundle check || bundle install\n - run:\n name: Create test app\n command: |\n bundle exec rake test_app\n - run:\n name: Run Rspec\n command: |\n TESTFILES=$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)\n bundle exec rspec --format documentation \\n --format RspecJunitFormatter \\n -o ~/rspec/rspec.xml \\n -- ${TESTFILES}\n - store_test_results:\n path: ~/rspec\n - store_artifacts:\n path: tmp/capybara\n\njobs:\n bundle:\n <<: *defaults\n steps:\n - checkout\n - restore_cache:\n keys:\n - spree-bundle-{{ .Branch }}\n - spree-bundle\n - run:\n name: Add keyserver\n command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4EB27DB2A3B88B8B\n - run:\n name: Install libvips\n command: sudo apt-get update && sudo apt-get install libvips\n - run:\n name: Set bundle path\n command: bundle config --local path vendor/bundle\n - run:\n name: Bundle Install\n command: |\n bundle check || bundle install\n - save_cache:\n paths:\n - vendor/bundle\n key: spree-bundle-{{ checksum "Gemfile.lock" }}\n\n tests_postgres: &tests_postgres\n <<: *run_tests\n environment: &postgres_environment\n <<: *environment\n DB: postgres\n DB_HOST: localhost\n DB_USERNAME: postgres\n docker:\n - image: *ruby_image\n - image: &postgres_image cimg/postgres:16.2\n environment:\n POSTGRES_USER: postgres\n\n tests_mysql: &tests_mysql\n <<: *run_tests\n environment: &mysql_environment\n <<: *environment\n DB: mysql\n DB_HOST: 127.0.0.1\n DB_USERNAME: root\n COVERAGE: true\n COVERAGE_DIR: /tmp/workspace/simplecov\n docker:\n - image: *ruby_image\n - image: &mysql_image cimg/mysql:8.0\n\nworkflows:\n version: 2\n main:\n jobs:\n - bundle\n - tests_postgres:\n requires:\n - bundle\n - tests_mysql:\n requires:\n - bundle\n
dataset_sample\yaml\spree_spree\cli\lib\spree_cli\templates\extension\.circleci\config.yml
config.yml
YAML
3,085
0.95
0
0
python-kit
628
2024-07-24T21:21:04.030100
BSD-3-Clause
false
9c9e047bb8412c592dc9a087419faa1a
# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where the package manifests are located.\n# Please see the documentation for all configuration options:\n# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file\n\nversion: 2\nupdates:\n - package-ecosystem: "bundler" # See documentation for possible values\n directory: "/" # Location of package manifests\n schedule:\n interval: "weekly"\n
dataset_sample\yaml\spree_spree\cli\lib\spree_cli\templates\extension\.github\.dependabot.yml
.dependabot.yml
YAML
529
0.8
0.272727
0.4
python-kit
776
2024-01-30T08:25:48.667917
BSD-3-Clause
false
0a988707d040ef1b070b19b0d2bf8c05
# Sample localization file for English. Add more files in this directory for other locales.\n# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.\n\nen:\n hello: "Hello world"\n
dataset_sample\yaml\spree_spree\cli\lib\spree_cli\templates\extension\config\locales\en.yml
en.yml
YAML
214
0.8
0.6
0.5
react-lib
706
2023-09-14T02:33:53.154807
GPL-3.0
false
c2813d3742491c51bd3a630acbf4d2b7
require: rubocop-rspec\n\ninherit_from: ../.rubocop.yml\n\nMetrics/BlockLength:\n Enabled: false\n\nStyle/BlockDelimiters:\n Enabled: false\n
dataset_sample\yaml\spree_spree\cli\lib\spree_cli\templates\extension\spec\.rubocop.yml
.rubocop.yml
YAML
134
0.85
0
0
python-kit
792
2025-06-26T13:42:41.533844
MIT
false
218f029c68d6cf6ed45da1b592e33c61
# i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks\n\n# The "main" locale.\nbase_locale: en\n## All available locales are inferred from the data by default. Alternatively, specify them explicitly:\n# locales: [es, fr]\n## Reporting locale, default: en. Available: en, ru.\n# internal_locale: en\n\n# Read and write translations.\ndata:\n ## Translations are read from the file system. Supported format: YAML, JSON.\n ## Provide a custom adapter:\n # adapter: I18n::Tasks::Data::FileSystem\n\n # Locale files or `Dir.glob` patterns where translations are read from:\n read:\n ## Default:\n # - config/locales/%{locale}.yml\n ## More files:\n # - config/locales/**/*.%{locale}.yml\n\n # Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom:\n # `i18n-tasks normalize -p` will force move the keys according to these rules\n write:\n ## For example, write devise and simple form keys to their respective files:\n # - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml']\n ## Catch-all default:\n # - config/locales/%{locale}.yml\n\n # External locale data (e.g. gems).\n # This data is not considered unused and is never written to.\n external:\n ## Example (replace %#= with %=):\n # - "<%#= %x[bundle info vagrant --path].chomp %>/templates/locales/%{locale}.yml"\n\n ## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class.\n # router: conservative_router\n\n yaml:\n write:\n # do not wrap lines at 80 characters\n line_width: -1\n\n ## Pretty-print JSON:\n # json:\n # write:\n # indent: ' '\n # space: ' '\n # object_nl: "\n"\n # array_nl: "\n"\n\n# Find translate calls\nsearch:\n ## Paths or `Find.find` patterns to search in:\n # paths:\n # - app/\n\n ## Root directories for relative keys resolution.\n # relative_roots:\n # - app/controllers\n # - app/helpers\n # - app/mailers\n # - app/presenters\n # - app/views\n\n ## Directories where method names which should not be part of a relative key resolution.\n # By default, if a relative translation is used inside a method, the name of the method will be considered part of the resolved key.\n # Directories listed here will not consider the name of the method part of the resolved key\n #\n # relative_exclude_method_name_paths:\n # -\n\n ## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting:\n ## *.jpg *.jpeg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less\n ## *.yml *.json *.zip *.tar.gz *.swf *.flv *.mp3 *.wav *.flac *.webm *.mp4 *.ogg *.opus *.webp *.map *.xlsx\n exclude:\n - app/assets/images\n - app/assets/fonts\n - app/assets/videos\n - app/assets/builds\n\n ## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`:\n ## If specified, this settings takes priority over `exclude`, but `exclude` still applies.\n # only: ["*.rb", "*.html.slim"]\n\n ## If `strict` is `false`, guess usages such as t("categories.#{category}.title"). The default is `true`.\n # strict: true\n\n ## Allows adding ast_matchers for finding translations using the AST-scanners\n ## The available matchers are:\n ## - RailsModelMatcher\n ## Matches ActiveRecord translations like\n ## User.human_attribute_name(:email) and User.model_name.human\n ## - DefaultI18nSubjectMatcher\n ## Matches ActionMailer's default_i18n_subject method\n ##\n ## To implement your own, please see `I18n::Tasks::Scanners::AstMatchers::BaseMatcher`.\n # ast_matchers:\n # - 'I18n::Tasks::Scanners::AstMatchers::RailsModelMatcher'\n # - 'I18n::Tasks::Scanners::AstMatchers::DefaultI18nSubjectMatcher'\n\n ## Multiple scanners can be used. Their results are merged.\n ## The options specified above are passed down to each scanner. Per-scanner options can be specified as well.\n ## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example\n\n## Translation Services\n# translation:\n# # Google Translate\n# # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate\n# google_translate_api_key: "AbC-dEf5"\n# # DeepL Pro Translate\n# # Get an API key and subscription at https://www.deepl.com/pro to use DeepL Pro\n# deepl_api_key: "48E92789-57A3-466A-9959-1A1A1A1A1A1A"\n# # deepl_host: "https://api.deepl.com"\n# # deepl_version: "v2"\n# # deepl_glossary_ids:\n# # - f28106eb-0e06-489e-82c6-8215d6f95089\n# # - 2c6415be-1852-4f54-9e1b-d800463496b4\n# # add additional options to the DeepL.translate call: https://www.deepl.com/docs-api/translate-text/translate-text/\n# deepl_options:\n# formality: prefer_less\n# # OpenAI\n# openai_api_key: "sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"\n# # openai_model: "gpt-3.5-turbo" # see https://platform.openai.com/docs/models\n# # may contain `%{from}` and `%{to}`, which will be replaced by source and target locale codes, respectively (using `Kernel.format`)\n# # openai_system_prompt: >-\n# # You are a professional translator that translates content from the %{from} locale\n# # to the %{to} locale in an i18n locale array.\n# #\n# # The array has a structured format and contains multiple strings. Your task is to translate\n# # each of these strings and create a new array with the translated strings.\n# #\n# # HTML markups (enclosed in < and > characters) must not be changed under any circumstance.\n# # Variables (starting with %%{ and ending with }) must not be changed under any circumstance.\n# #\n# # Keep in mind the context of all the strings for a more accurate translation.\n\n## Do not consider these keys missing:\n# ignore_missing:\n# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'\n# - '{devise,simple_form}.*'\n\n## Consider these keys used:\n# ignore_unused:\n# - 'activerecord.attributes.*'\n# - '{devise,kaminari,will_paginate}.*'\n# - 'simple_form.{yes,no}'\n# - 'simple_form.{placeholders,hints,labels}.*'\n# - 'simple_form.{error_notification,required}.:'\n\n## Exclude these keys from the `i18n-tasks eq-base' report:\n# ignore_eq_base:\n# all:\n# - common.ok\n# fr,es:\n# - common.brand\n\n## Exclude these keys from the `i18n-tasks check-consistent-interpolations` report:\n# ignore_inconsistent_interpolations:\n# - 'activerecord.attributes.*'\n\n## Ignore these keys completely:\n# ignore:\n# - kaminari.*\n\n## Sometimes, it isn't possible for i18n-tasks to match the key correctly,\n## e.g. in case of a relative key defined in a helper method.\n## In these cases you can use the built-in PatternMapper to map patterns to keys, e.g.:\n#\n# <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',\n# only: %w(*.html.haml *.html.slim),\n# patterns: [['= title\b', '.page_title']] %>\n#\n# The PatternMapper can also match key literals via a special %{key} interpolation, e.g.:\n#\n# <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',\n# patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %>\n
dataset_sample\yaml\spree_spree\core\config\i18n-tasks.yml
i18n-tasks.yml
YAML
7,148
0.95
0.039326
0.909677
vue-tools
763
2024-04-06T10:15:46.762995
GPL-3.0
false
67ec16e0833621e0a10211c8e8323c57
---\nen:\n action_text:\n video_embed:\n not_found: Can't embed a video using the provided URL\n activemodel:\n errors:\n messages:\n blank: can't be blank\n models:\n spree/fulfilment_changer:\n attributes:\n current_shipment:\n can_not_have_backordered_inventory_units: has backordered inventory units\n has_already_been_shipped: has already been shipped\n desired_shipment:\n can_not_transfer_within_same_shipment: can not be same as current shipment\n has_not_enough_stock_at_desired_location: has not enough stock in desired stock location\n activerecord:\n attributes:\n spree/address:\n address1: Address\n address2: Address (contd.)\n city: City\n company: Company\n country: Country\n firstname: First Name\n label: Address name\n lastname: Last Name\n phone: Phone\n state: State\n zipcode: Zip Code\n spree/calculator/tiered_flat_rate:\n preferred_base_amount: Base Amount\n preferred_tiers: Tiers\n spree/calculator/tiered_percent:\n preferred_base_percent: Base Percent\n preferred_tiers: Tiers\n spree/country:\n iso: ISO\n iso3: ISO3\n iso_name: ISO Name\n name: Name\n numcode: ISO Code\n spree/credit_card:\n base: ''\n cc_type: Type\n month: Month\n name: Name\n number: Number\n verification_value: Verification Value\n year: Year\n spree/inventory_unit:\n state: State\n spree/invitation:\n expires_at: Expires at\n inviter: Inviter\n spree/line_item:\n price: Price\n quantity: Quantity\n spree/option_type:\n filterable: Filterable\n name: Name\n presentation: Presentation\n spree/order:\n checkout_complete: Checkout Complete\n completed_at: Completed At\n considered_risky: Risky\n coupon_code: Coupon Code\n created_at: Order Date\n email: Email\n ip_address: IP Address\n item_count: Items\n item_total: Item Total\n number: Number\n payment_state: Payment State\n shipment_state: Shipment State\n special_instructions: Special Instructions\n state: State\n total: Total\n spree/order/bill_address:\n address1: Billing address street\n city: Billing address city\n firstname: Billing address first name\n lastname: Billing address last name\n phone: Billing address phone\n state: Billing address state\n zipcode: Billing address zipcode\n spree/order/ship_address:\n address1: Shipping address street\n city: Shipping address city\n firstname: Shipping address first name\n lastname: Shipping address last name\n phone: Shipping address phone\n state: Shipping address state\n zipcode: Shipping address zipcode\n spree/payment:\n amount: Amount\n number: Number\n spree/payment_method:\n name: Name\n spree/product:\n available_on: Available On\n cost_currency: Cost Currency\n cost_price: Cost Price\n description: Description\n discontinue_on: Discontinue On\n less_than: Less than\n make_active_at: Make Active At\n master_price: Master Price\n more_than: More than\n name: Name\n on_hand: On Hand\n shipping_category: Shipping Category\n tax_category: Tax Category\n spree/promotion:\n advertise: Advertise\n code: Code\n description: Description\n event_name: Event Name\n expires_at: Expires At\n generate_code: Generate coupon code\n name: Name\n path: Path\n promotion_category: Promotion Category\n starts_at: Starts At\n usage_limit: Usage Limit\n spree/promotion_category:\n code: Code\n name: Name\n spree/property:\n name: Name\n presentation: Presentation\n spree/prototype:\n name: Name\n spree/return_authorization:\n amount: Amount\n spree/role:\n name: Name\n spree/shipment:\n number: Number\n spree/state:\n abbr: Abbreviation\n name: Name\n spree/state_change:\n state_changes: State changes\n state_from: State from\n state_to: State to\n timestamp: Timestamp\n type: Type\n updated: Updated\n user: User\n spree/store:\n mail_from_address: Mail From Address\n meta_description: Meta Description\n meta_keywords: Meta Keywords\n name: Site Name\n preferred_digital_asset_authorized_clicks: Download clicks limit\n preferred_digital_asset_authorized_days: Download days limit\n preferred_limit_digital_download_count: Limit digital links download count\n preferred_limit_digital_download_days: Limit digital links download days\n seo_robots: SEO Robots\n seo_title: SEO Title\n url: Site URL\n spree/store_credit:\n amount_used: Amount used\n spree/store_credit_category:\n name: Name\n spree/tax_category:\n description: Description\n name: Name\n spree/tax_rate:\n amount: Rate\n included_in_price: Included in Price\n show_rate_in_label: Show rate in label\n spree/taxon:\n name: Name\n permalink: Permalink\n position: Position\n spree/taxonomy:\n name: Name\n spree/user:\n email: Email\n password: Password\n password_confirmation: Password Confirmation\n spree/variant:\n cost_currency: Cost Currency\n cost_price: Cost Price\n depth: Depth\n height: Height\n price: Price\n sku: SKU\n weight: Weight\n width: Width\n spree/wished_item:\n variant: ''\n spree/zone:\n description: Description\n name: Name\n user:\n current_sign_in: Current sign in at\n last_sign_in: Last sign in at\n sign_in_count: Sign in count\n errors:\n messages:\n blank: can't be blank\n models:\n spree/calculator/tiered_flat_rate:\n attributes:\n base:\n keys_should_be_positive_number: Tier keys should all be numbers larger than 0\n preferred_tiers:\n should_be_hash: should be a hash\n spree/calculator/tiered_percent:\n attributes:\n base:\n keys_should_be_positive_number: Tier keys should all be numbers larger than 0\n values_should_be_percent: Tier values should all be percentages between 0% and 100%\n preferred_tiers:\n should_be_hash: should be a hash\n spree/classification:\n attributes:\n taxon_id:\n already_linked: is already linked to this product\n spree/credit_card:\n attributes:\n base:\n card_expired: Card has expired\n expiry_invalid: Card expiration is invalid\n spree/image:\n attributes:\n attachment:\n attachment_must_be_present: must be present\n not_allowed_content_type: has not allowed content type\n spree/legacy_user:\n attributes:\n bill_address_id:\n belongs_to_other_user: belongs to other user\n deprecated_in_completed_order: deprecated in completed order\n ship_address_id:\n belongs_to_other_user: belongs to other user\n deprecated_in_completed_order: deprecated in completed order\n spree/line_item:\n attributes:\n currency:\n must_match_order_currency: Must match order currency\n spree/payment:\n attributes:\n amount:\n greater_than_max_amount: is greater than the allowed maximum amount of %{max_amount}\n spree/product:\n attributes:\n base:\n cannot_destroy_if_attached_to_line_items: Cannot delete Products that are added to placed Orders. In such cases, please discontinue them.\n discontinue_on:\n invalid_date_range: must be later than available date\n spree/promotion:\n attributes:\n expires_at:\n invalid_date_range: must be later than start date\n spree/refund:\n attributes:\n amount:\n greater_than_allowed: is greater than the allowed amount.\n spree/reimbursement:\n attributes:\n base:\n return_items_order_id_does_not_match: One or more of the return items specified do not belong to the same order as the reimbursement.\n spree/return_item:\n attributes:\n inventory_unit:\n other_completed_return_item_exists: "%{inventory_unit_id} has already been taken by return item %{return_item_id}"\n reimbursement:\n cannot_be_associated_unless_accepted: cannot be associated to a return item that is not accepted.\n spree/shipping_method:\n attributes:\n base:\n required_shipping_category: You must select at least one shipping category\n spree/store:\n attributes:\n base:\n cannot_destroy_only_store: Cannot destroy the only Store.\n spree/store_credit:\n attributes:\n amount_authorized:\n exceeds_total_credits: Exceeds total credits.\n amount_used:\n cannot_be_greater_than_amount: Cannot be greater than amount.\n greater_than_zero_restrict_delete: is greater than zero. Can not delete store credit.\n spree/store_credit_category:\n attributes:\n base:\n cannot_destroy_if_used_in_store_credit: Cannot delete store credit categories once they are used in store credit.\n spree/taxon_image:\n attributes:\n attachment:\n not_allowed_content_type: has not allowed content type\n spree/user:\n attributes:\n bill_address_id:\n belongs_to_other_user: belongs to other user\n deprecated_in_completed_order: deprecated in completed order\n ship_address_id:\n belongs_to_other_user: belongs to other user\n deprecated_in_completed_order: deprecated in completed order\n spree/variant:\n attributes:\n base:\n cannot_destroy_if_attached_to_line_items: Cannot delete Variants that are added to placed Orders. In such cases, please discontinue them.\n must_supply_price_for_variant_or_master: Must supply price for variant or master price for product.\n no_master_variant_found_to_infer_price: No master variant found to infer price\n spree/wished_item:\n attributes:\n variant:\n taken: You already added this item to your wishlist\n models:\n spree/address:\n one: Address\n other: Addresses\n spree/classification:\n one: Classification\n other: Classifications\n spree/cms_page:\n one: Page\n other: Pages\n spree/cms_section:\n one: Section\n other: Sections\n spree/country:\n one: Country\n other: Countries\n spree/credit_card:\n one: Credit Card\n other: Credit Cards\n spree/customer_return:\n one: Customer Return\n other: Customer Returns\n spree/digital:\n one: Digital asset\n other: Digital assets\n spree/export:\n one: Export\n other: Exports\n spree/integration:\n one: Integration\n other: Integrations\n spree/inventory_unit:\n one: Inventory Unit\n other: Inventory Units\n spree/line_item:\n one: Line Item\n other: Line Items\n spree/option_type:\n one: Option Type\n other: Option Types\n spree/option_value:\n one: Option Value\n other: Option Values\n spree/order:\n one: Order\n other: Orders\n spree/payment:\n one: Payment\n other: Payments\n spree/payment_method:\n one: Payment Method\n other: Payment Methods\n spree/price:\n one: Price\n other: Prices\n spree/product:\n one: Product\n other: Products\n spree/promotion:\n one: Promotion\n other: Promotions\n spree/promotion_category:\n one: Promotion Category\n other: Promotion Categories\n spree/property:\n one: Property\n other: Properties\n spree/prototype:\n one: Prototype\n other: Prototypes\n spree/refund_reason:\n one: Refund Reason\n other: Refund Reasons\n spree/reimbursement:\n one: Reimbursement\n other: Reimbursements\n spree/reimbursement_type:\n one: Reimbursement Type\n other: Reimbursement Types\n spree/return_authorization:\n one: Return Authorization\n other: Return Authorizations\n spree/return_authorization_reason:\n one: Return Authorization Reason\n other: Return Authorization Reasons\n spree/role:\n one: Roles\n other: Roles\n spree/shipment:\n one: Shipment\n other: Shipments\n spree/shipping_category:\n one: Shipping Category\n other: Shipping Categories\n spree/shipping_method:\n one: Shipping Method\n other: Shipping Methods\n spree/state:\n one: State\n other: States\n spree/state_change:\n one: State Change\n other: State Changes\n spree/stock_item:\n one: Stock Item\n other: Stock Items\n spree/stock_location:\n one: Stock Location\n other: Stock Locations\n spree/stock_movement:\n one: Stock Movement\n other: Stock Movements\n spree/stock_transfer:\n one: Stock Transfer\n other: Stock Transfers\n spree/store:\n one: Store\n other: Stores\n spree/store_credit:\n one: Store Credit\n other: Store Credits\n spree/store_credit_category:\n one: Store Credit Category\n other: Store Credit Categories\n spree/tax_category:\n one: Tax Category\n other: Tax Categories\n spree/tax_rate:\n one: Tax Rate\n other: Tax Rates\n spree/taxon:\n one: Taxon\n other: Taxons\n spree/taxonomy:\n one: Taxonomy\n other: Taxonomies\n spree/theme:\n one: Theme\n other: Themes\n spree/tracker:\n one: Tracker\n other: Trackers\n spree/user:\n one: User\n other: Users\n spree/variant:\n one: Variant\n other: Variants\n spree/zone:\n one: Zone\n other: Zones\n address_book:\n save: Save\n successfully_created: New address has been successfully created\n devise:\n confirmations:\n confirmed: Your account was successfully confirmed. You are now signed in.\n send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.\n failure:\n inactive: Your account was not activated yet.\n invalid: Invalid email or password.\n invalid_token: Invalid authentication token.\n locked: Your account is locked.\n timeout: Your session expired, please sign in again to continue.\n unauthenticated: You need to sign in or sign up before continuing.\n unconfirmed: You have to confirm your account before continuing.\n mailer:\n confirmation_instructions:\n subject: Confirmation instructions\n reset_password_instructions:\n subject: Reset password instructions\n unlock_instructions:\n subject: Unlock Instructions\n oauth_callbacks:\n failure: Could not authorize you from %{kind} because "%{reason}".\n success: Successfully authorized from %{kind} account.\n unlocks:\n send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.\n unlocked: Your account was successfully unlocked. You are now signed in.\n user_passwords:\n user:\n cannot_be_blank: Your password cannot be blank.\n send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.\n updated: Your password was changed successfully. You are now signed in.\n user_registrations:\n destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.\n inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.\n signed_up: Welcome! You have signed up successfully.\n updated: You updated your account successfully.\n user_sessions:\n signed_in: Signed in successfully.\n signed_out: Signed out successfully.\n errors:\n messages:\n already_confirmed: was already confirmed\n not_a_number: is not a number\n not_found: not found\n not_locked: was not locked\n not_saved:\n one: '1 error prohibited this %{resource} from being saved:'\n other: "%{count} errors prohibited this %{resource} from being saved:"\n number:\n currency:\n format:\n separator: "."\n percentage:\n format:\n precision: 1\n pagination:\n first: "&laquo;"\n last: "&raquo;"\n next: "&rsaquo;"\n previous: "&lsaquo;"\n truncate: "&hellip;"\n spree:\n abbreviation: Abbreviation\n accept: Accept\n acceptance_errors: Acceptance errors\n acceptance_status: Acceptance status\n accepted: Accepted\n accepts_email_marketing: Accepts email marketing\n account: Account\n account_info: Account info\n action: Action\n actions:\n approve: Approve\n cancel: Cancel\n confirm: Confirm\n connect: Connect\n continue: Continue\n create: Create\n destroy: Delete\n discard: Discard\n disconnect: Disconnect\n edit: Edit\n list: List\n listing: Listing\n new: New\n publish: Publish\n receive: Mark as received\n refund: Refund\n reject: Reject\n resend: Resend\n resolve: Mark as resolved\n save: Save\n select_file: Select file\n send_invitation: Send invitation\n update: Update\n activate: Activate\n active: Active\n add: Add\n add_action_of_type: Add action of type\n add_address: Add address\n add_country: Add Country\n add_coupon_code: Add Coupon Code\n add_new_address: Add new address\n add_new_credit_card: Add a new card\n add_new_header: Add New Header\n add_new_page: Add new page\n add_new_store: Add New Store\n add_new_style: Add New Style\n add_one: Add One\n add_option_value: Add Option Value\n add_product: Add Product\n add_product_properties: Add Product Properties\n add_products: Add Products\n add_rule_of_type: Add rule of type\n add_section: Add section\n add_selected_products: Add selected products\n add_selected_variant: Add selected variant\n add_state: Add State\n add_stock: Add Stock\n add_store: New Store\n add_store_credit: Add Store Credit\n add_to_cart: Add To Cart\n add_to_waitlist: Add to waitlist\n add_to_waitlist_description: Add to waitlist description\n add_variant: Add Variant\n added_to_cart: Added to cart successfully!\n additional_item: Additional Item\n address: Address\n address1: Address\n address2: Address (contd.)\n address_action_popup:\n delete_button: yes, delete\n delete_text: Do you really want <br /> to delete this address?\n delete_title: Are you sure?\n address_book:\n add_house_number: Add a house number if you have one\n add_new_shipping_address: Add new address\n address_name_label: Address Name\n address_name_placeholder: Give this address a unique name (Work, Home, etc.)\n addresses: Addresses\n label: Address Name\n no_shipping_addresses_on_file: No addresses on file\n other_address: Other address\n remove_address: Remove Address\n set_as_default_billing_address: Set as default billing address\n set_as_default_delivery_address: Set as default delivery address\n successfully_created: Address has been successfully created.\n successfully_removed: Address has been successfully removed.\n successfully_saved: Saved successfully\n successfully_updated: Updated successfully\n unsuccessfully_saved: There was an error while trying to save your address.\n unsuccessfully_updated: There was an update while trying to update your address.\n addresses: Addresses\n adjustable: Adjustable\n adjustment: Adjustment\n adjustment_amount: Amount\n adjustment_labels:\n tax_rates:\n excluding_tax: "%{name}%{amount}"\n including_tax: "%{name}%{amount} (Included in Price)"\n adjustment_successfully_closed: Adjustment has been successfully closed!\n adjustment_successfully_opened: Adjustment has been successfully opened!\n adjustment_total: Adjustment Total\n adjustments: Adjustments\n adjustments_deleted: Adjustments Deleted\n administration: Administration\n advertise: Advertise\n agree_to_privacy_policy: Agree to Privacy Policy\n agree_to_terms_of_service: Agree to Terms of Service\n all: All\n all_adjustments_closed: All adjustments successfully closed!\n all_adjustments_opened: All adjustments successfully opened!\n all_departments: All departments\n all_items_have_been_returned: All items have been returned\n all_posts: All posts\n all_posts_with_tag: All posts with tag\n all_products: All products\n all_rights_reserved: All rights reserved\n all_time: All time\n already_have_account: Already have an account?\n alt_text: Alternative Text\n alternative_phone: Alternative Phone\n amount: Amount\n analytics: Analytics\n and: and\n api_keys: API keys\n apply: Apply\n apply_only_on_full_priced_items: Apply only on full priced items\n approve: approve\n approved_at: Approved at\n approver: Approver\n are_you_sure: Are you sure?\n are_you_sure_delete: Are you sure you want to delete this record?\n associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?\n at_symbol: "@"\n attachments: Attachments\n audit_log: Audit Log\n author: Author\n authorization_failure: Authorization Failure\n authorized: Authorized\n auto_capture: Auto Capture\n automatic_promotion: Automatic\n automatic_taxon_names:\n new_arrivals: New arrivals\n on_sale: On sale\n availability: availability\n available: Available\n available_on: Available On\n average_order_value: Average Order Value\n avs_response: AVS Response\n back: Back\n back_end: Backend\n back_to_payment: Back To Payment\n back_to_resource_list: Back To %{resource} List\n back_to_rma_reason_list: Back To RMA Reason List\n back_to_store: Back to Store\n back_to_users_list: Back To Users List\n backorderable: Backorderable\n backorderable_default: Backorderable default\n backordered: Backordered\n backordered_confirm_info: Selected item is backordered so expect delays. Are you sure you want to order it?\n backordered_info: Backordered\n backorders_allowed: backorders allowed\n balance: Balance\n balance_due: Balance Due\n barcode: Barcode\n base_amount: Base Amount\n base_percent: Base Percent\n basic_information: Basic Information\n bill_address: Bill Address\n billing: Billing\n billing_address: Billing Address\n blog: Blog\n blogs_posts: Blogs posts\n body_tag_end: Body tag end\n body_tag_start: Body tag start\n both: Both\n breadcrumbs: Breadcrumbs\n calculated_reimbursements: Calculated Reimbursements\n calculator: Calculator\n calculator_settings_warning: If you are changing the calculator type, you must save first before you can edit the calculator settings\n call_us_now: 'Call us now: '\n cancel: cancel\n cancel_order: Cancel order\n canceled: Canceled\n canceled_at: Canceled at\n canceler: Canceler\n cannot_be_destroyed: Order cannot be destroyed.\n cannot_create_customer_returns: Cannot create customer returns as this order has no shipped units.\n cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.\n cannot_create_returns: Cannot create returns as this order has no shipped units.\n cannot_empty: Cannot empty order.\n cannot_empty_completed_order: Order has already been processed so it cannot be emptied\n cannot_perform_operation: Cannot perform requested operation\n cannot_return_more_than_bought_quantity: Cannot return more than bought quantity.\n cannot_set_shipping_method_without_address: Cannot set shipping method until customer details are provided.\n cannot_ship: Shipment cannot be shipped\n capture: Capture\n capture_events: Capture events\n card_code: Card Verification Code (CVC)\n card_number: Card Number\n card_type: Brand\n card_type_is: Card type is\n cart: Cart\n cart_line_item:\n discontinued: "%{li_name} was removed because it was discontinued"\n out_of_stock: "%{li_name} was removed because it was sold out"\n cart_page:\n add_promo_code: ADD PROMO CODE\n change_quantity: Change quantity\n checkout: checkout\n empty_info: Your cart is empty.\n header: Your shopping cart\n product: product\n quantity: quantity\n remove_from_cart: Remove from cart\n title: Shopping Cart\n cart_state_changed: Cart changed\n cart_subtotal:\n one: Subtotal (1 item)\n other: Subtotal (%{count} items)\n categories: Categories\n categorization: Categorization\n category: Category\n change: Change\n change_password: Change password\n changes_published: Changes published!\n channel: Channel\n charged: Charged\n checkout: Checkout\n checkout_message: Checkout message\n choose_a_customer: Choose a customer\n choose_a_taxon_to_sort_products_for: Choose a taxon to sort products for\n choose_currency: Choose Currency\n choose_dashboard_locale: Choose Dashboard Locale\n choose_location: Choose location\n city: City\n clear: Clear\n clear_all: Clear all\n clear_cache: Clear Cache\n clear_cache_ok: Cache was flushed\n clear_cache_warning: Clearing cache will temporarily reduce the performance of your store.\n click_and_drag_on_the_products_to_sort_them: Click and drag on the products to sort them.\n clone: Clone\n close: Close\n close_all_adjustments: Close All Adjustments\n close_sidebar: Close sidebar\n code: Code\n colors: Colors\n company: Company\n compare_at_amount: Compare at amount\n compare_at_price: Compare at price\n complete: complete\n conditions: Conditions\n configuration: Configuration\n configurations: Configurations\n confirm: Confirm\n confirm_delete: Confirm Deletion\n confirm_password: Password Confirmation\n contact: Contact\n contact_information: Contact information\n contact_phone: Contact phone\n contact_us: Contact us\n container_alignment: Container alignment\n content: Content\n continue: Continue\n continue_as_guest: Continue as a guest\n continue_selling_when_out_of_stock: Continue selling when out of stock\n continue_shopping: Continue shopping\n continue_without_logging_in: Continue without logging in\n copy: Copy\n copy_id: Copy ID\n copy_link: Copy link\n cost_currency: Cost Currency\n cost_price: Cost Price\n could_not_create_customer_return: Could not create customer return\n could_not_create_stock_movement: There was a problem saving this stock movement. Please try again.\n count_on_hand: Count On Hand\n countries: Countries\n country: Country\n country_based: Country Based\n country_name: Name\n country_names:\n CA: Canada\n FRA: France\n ITA: Italy\n US: United States of America\n country_rule:\n label: Choose must be shipped to this country\n coupon: Coupon\n coupon_code: Coupon code\n coupon_code_already_applied: The coupon code has already been applied to this order\n coupon_code_applied: The coupon code was successfully applied to your order.\n coupon_code_apply: Apply\n coupon_code_better_exists: The previously applied coupon code results in a better deal\n coupon_code_expired: The coupon code is expired\n coupon_code_max_usage: Coupon code usage limit exceeded\n coupon_code_not_eligible: This coupon code is not eligible for this order\n coupon_code_not_found: The coupon code you entered doesn't exist. Please try again.\n coupon_code_removed: The coupon code was successfully removed from your order.\n coupon_code_unknown_error: This coupon code could not be applied to the cart at this time.\n coupon_code_used: The coupon code you entered has already been used. Please try again.\n coupon_codes: Coupon codes\n create: Create\n create_a_new_account: Create a new account\n create_customer: Create customer\n create_new: Create new\n create_new_order: Create new order\n create_new_team: Create new team\n create_reimbursement: Create reimbursement\n created_at: Created at\n created_by: Created by\n credit: Credit\n credit_allowed: Credit allowed\n credit_card: Credit Card\n credit_card_remove_confirmation: Are you sure you want to delete the credit card?\n credit_cards: Credit Cards\n credit_owed: Credit Owed\n credited: Credited\n credits: Credits\n currencies: Currencies\n currency: Currency\n currency_settings: Currency Settings\n current: Current\n current_password: Current password\n current_promotion_usage: 'current usage: %{count}'\n custom_code: Custom code\n custom_font_code: Custom font code\n customer: Customer\n customer_details: Customer Details\n customer_details_updated: Customer Details Updated\n customer_return: Customer Return\n customer_returns: Customer Returns\n customer_search: Customer Search\n customer_support_email: Customer Support Email\n customers: Customers\n cut: Cut\n cvv: CVV\n cvv_response: CVV Response\n date: Date\n date_completed: Date Completed\n date_picker:\n fpr_human_friendly_date_format: M j, Y\n fpr_human_friendly_date_time_format: M j, Y at H:i\n date_range: Date Range\n days_ago: Days ago\n default: Default\n default_billing_address: Default billing address\n default_country: Default Country\n default_country_cannot_be_deleted: Default country cannot be deleted\n default_currency: Default currency\n default_post_categories:\n articles: Articles\n news: News\n resources: Resources\n default_refund_amount: Default Refund Amount\n default_shipping_address: Default shipping address\n default_stock_location_name: Shop location\n default_tax: Default Tax\n default_tax_zone: Default Tax Zone\n default_theme_name: Default\n default_wishlist_name: Wishlist\n delete: Delete\n delete_address: Delete address\n delete_from_taxon: Delete From Taxon\n delete_selected: Delete selected\n deleted: Deleted\n delivery: Delivery\n delivery_address: Delivery Address\n delivery_information: Delivery Information\n depth: Depth\n description: Description\n destination: Destination\n destroy: Destroy\n details: Details\n developers: Developers\n digital:\n digital_delivery: Digital Delivery\n digital_assets: Digital assets\n digital_link_unauthorized: You are not authorized to access this asset\n dimension_units:\n centimeter: Centimeter (cm)\n foot: Foot (ft)\n inch: Inch (in)\n millimeter: Millimeter (mm)\n discontinue_on: Discontinue On\n discontinued: Discontinued\n discontinued_variants_present: Some line items in this order have products that are no longer available.\n discount: Discount\n discount_amount: Discount Amount\n discounts: Discounts\n dismiss_banner: No. Thanks! I'm not interested, do not display this message again\n display: Display\n display_delivery_range: Delivery in %{delivery_range} business days\n display_on: Display on\n display_settings: Display settings\n do_not_import: Do not import\n doesnt_track_inventory: It doesn't track inventory\n domain: Domain\n domains: Domains\n done: Done\n dont_have_account: No account?\n download: Download\n draft: Draft\n draft_mode: Draft Mode\n draft_orders: Draft orders\n duplicate: Duplicate\n duplicating: Duplicating\n edit: Edit\n edit_address: Edit address\n edit_refund: Edit refund\n editing_resource: Editing %{resource}\n editing_rma_reason: Editing RMA Reason\n editing_user: Edit Your account\n eligibility_errors:\n messages:\n has_excluded_product: Your cart contains a product that prevents this coupon code from being applied.\n item_total_less_than: This coupon code can't be applied to orders less than %{amount}.\n item_total_less_than_or_equal: This coupon code can't be applied to orders less than or equal to %{amount}.\n item_total_more_than: This coupon code can't be applied to orders higher than %{amount}.\n item_total_more_than_or_equal: This coupon code can't be applied to orders higher than or equal to %{amount}.\n limit_once_per_user: This coupon code can only be used once per user.\n missing_product: This coupon code can't be applied because you don't have all of the necessary products in your cart.\n missing_taxon: You need to add a product from all applicable categories before applying this coupon code.\n no_applicable_products: You need to add an applicable product before applying this coupon code.\n no_matching_taxons: You need to add a product from an applicable category before applying this coupon code.\n no_user_or_email_specified: You need to login or provide your email before applying this coupon code.\n no_user_specified: You need to login before applying this coupon code.\n not_first_order: This coupon code can only be applied to your first order.\n wrong_country: This coupon code is not eligible in your country\n email: Email\n email_marketing: Email marketing\n emails: Emails\n empty: Empty\n empty_cart: Empty Cart\n enable_mail_delivery: Enable Mail Delivery\n end: End\n ending_at: Ending at\n ending_in: Ending in\n ends_at: Ends at\n enter: Enter\n enter_using_password: Enter using password\n error: error\n error_user_destroy_with_orders: User associated with orders cannot be destroyed\n error_user_does_not_have_any_store_credits: User does not have any Store Credits available\n errors:\n messages:\n blank: can't be blank\n cannot_remove_icon: Cannot remove image\n could_not_create_taxon: Could not create taxon\n no_shipping_methods_available: No shipping methods available for selected location, please change your address and try again.\n store_association_can_not_be_changed: The store association can not be changed\n store_is_already_set: Store is already set\n services:\n get_shipping_rates:\n no_line_items: To generate Shipping Rates you need to add some Line Items to Order\n no_shipping_address: To generate Shipping Rates Order needs to have a Shipping Address\n errors_prohibited_this_record_from_being_saved:\n one: 1 error prohibited this record from being saved\n other: "%{count} errors prohibited this record from being saved"\n estimated_delivery_time: Estimated delivery time\n estimated_transit_business_days: Estimated transit business days\n event: Event\n events:\n spree:\n cart:\n add: Add to cart\n checkout:\n coupon_code_added: Coupon code added\n content:\n visited: Visit static content page\n order:\n contents_changed: Order contents changed\n page_view: Static page viewed\n user:\n signup: User signup\n exceptions:\n count_on_hand_setter: Cannot set count_on_hand manually, as it is set automatically by the recalculate_count_on_hand callback. Please use `update_column(:count_on_hand, value)` instead.\n excerpt: Excerpt\n exchange_for: Exchange for\n excl: excl.\n existing_address: Existing address\n existing_shipments: Existing shipments\n expedited_exchanges_warning: Any specified exchanges will ship to the customer immediately upon saving. The customer will be charged the full amount of the item if they do not return the original item within %{days_window} days.\n expiration: Expiration\n expiration_date: Expiration Date\n expired: Expired\n explore_taxon: Explore taxon\n export: Export\n export_mailer:\n export_done:\n message: Good work, your export is ready! Please use the link below to download it.\n subject: Your export %{export_number} was successfully processed!\n greeting: Hi %{user_name},\n thanks: Thank you,\n extension: Extension\n extensions_directory: Extensions Directory\n facebook: Facebook\n failed_payment_attempts: Failed Payment Attempts\n favicon: Favicon\n favicon_upload_info: 'File format: PNG or ICO. File resolution: up to 256x256. File size: up to 1MB'\n featured_image: Featured image\n featured_taxon: Featured taxon\n field: Field\n filename: Filename\n fill_in_customer_info: Please fill in customer info\n filter: Filter\n filter_results: Filter Results\n filterable: Filterable\n filtered_records: Filtered records\n finalize: Finalize\n finalized: Finalized\n find_a_taxon: Find a Taxon\n find_your_order: Find your order\n first_item: First Item\n first_name: First Name\n first_name_begins_with: First Name Begins With\n firstname: First Name\n flat_percent: Flat Percent\n flat_rate_per_order: Flat Rate\n flexible_rate: Flexible Rate\n follow_us: Follow us\n font_family: Font family\n font_size_scale: Font size scale\n fonts: Fonts\n footer: Footer\n forbidden: Access denied\n forbidden_message: You are not authorized to access this page.\n forgot_password: Forgot password?\n free: Free\n free_shipping: Free Shipping\n free_shipping_amount: "-"\n from: From\n front_end: Front End\n gateway: Gateway\n gateway_error: Gateway Error\n general: General\n general_information: General information\n general_settings: General Settings\n generate_code: Generate coupon code\n get_back_to_the: Get back to the\n gift_card: Gift card\n gift_cards: Gift cards\n go_to_category: Go to category\n go_to_facebook: Go to facebook\n go_to_homepage: Go to Home Page\n go_to_instagram: Go to instagram\n go_to_twitter: Go to twitter\n guest_checkout: Guest Checkout\n guest_user_account: Checkout as a Guest\n has_no_shipped_units: has no shipped units\n head_tag: Head tag\n header_banner: Header banner\n header_font_family: Header font family\n header_font_size_scale: Header font size scale\n height: Height\n help_center: Help Center\n hide: Hide\n hide_from_subcategories_nav: Hide from subcategories navigation\n home: Home\n home_page: homepage\n homepage: Homepage\n i18n:\n available_locales: Available Locales\n country: Country\n default_country: Default Country\n fields: Fields\n language: Language\n localization_settings: Localization Settings\n only_complete: Only complete\n only_incomplete: Only incomplete\n select_locale: Select locale\n show_only: Show only\n supported_locales: Supported Locales\n this_file_language: English (US)\n translations: Translations\n icon: Icon\n image: Image\n image_alt_text: Add Alt text to your image\n images: Images\n implement_eligible_for_return: 'Must implement #eligible_for_return? for your EligibilityValidator.'\n implement_requires_manual_intervention: 'Must implement #requires_manual_intervention? for your EligibilityValidator.'\n import_payment_methods_from: Import payment methods from\n import_products_from: Import products from\n in_stock: In Stock\n inactive: Inactive\n incl: incl.\n included_in_price: Included in Price\n included_price_validation: cannot be selected unless you have set a Default Tax Zone\n incomplete: Incomplete\n index_in_search_engines: Index in search engines\n info_number_of_skus_not_shown:\n one: and one other\n other: and %{count} others\n info_product_has_multiple_skus: 'This product has %{count} variants:'\n instagram: Instagram\n instructions_to_reset_password: Please enter your email on the form below\n insufficient_stock: Insufficient stock available, only %{on_hand} remaining\n insufficient_stock_item_quantity: Insufficient stock quantity available\n insufficient_stock_lines_present: Some line items in this order have insufficient quantity.\n integrations: Integrations\n intercept_email_address: Intercept Email Address\n intercept_email_instructions: Override email recipient and replace with this address.\n internal_name: Internal Name\n internationalization: Internationalization\n invalid_credit_card: Invalid credit card.\n invalid_exchange_variant: Invalid exchange variant.\n invalid_or_expired_invitation: Invalid or expired invitation\n invalid_payment_provider: Invalid payment provider.\n invalid_promotion_action: Invalid promotion action.\n invalid_promotion_rule: Invalid promotion rule.\n inventory: Inventory\n inventory_adjustment: Inventory Adjustment\n inventory_error_flash_for_insufficient_quantity: An item in your cart has become unavailable.\n inventory_state: Inventory State\n invitation_accepted: Invitation accepted!\n invitation_mailer:\n greeting: Hi %{user_name},\n invitation_accepted:\n body: "%{invitee_name} has accepted your invitation to join %{resource_name}"\n subject: "%{invitee_name} has accepted your invitation to join %{resource_name}"\n invitation_email:\n body: "%{inviter_name} has invited you to join %{resource_name}"\n link_description: 'To accept this invitation, please click the link below:'\n subject: Invitation to join %{resource_name}\n thanks: Thank you,\n invitation_resent: Invitation resent!\n invitations: Invitations\n invited_by: Invited by\n is_not_available_to_shipment_address: is not available to shipment address\n iso: ISO Alpha-2\n iso3: ISO Alpha-3\n iso_name: ISO Name\n issue_gift_card: Issue Gift Card\n issued_on: Issued On\n item: Item\n item_description: Item Description\n item_total: Item Total\n item_total_rule:\n operators:\n gt: greater than\n gte: greater than or equal to\n lt: less than\n lte: less than or equal to\n items_cannot_be_shipped: We are unable to calculate shipping rates for the selected items.\n items_in_rmas: Items in Return Authorizations\n items_reimbursed: Items reimbursed\n items_to_be_reimbursed: Items to be reimbursed\n join_slack: Join Slack\n kind: Kind\n language: Language\n last_name: Last Name\n last_name_begins_with: Last Name Begins With\n lastname: Last Name\n learn_more: Learn More\n lifetime_stats: Lifetime Stats\n limit_usage_to: Limit usage to\n line_item: Line Item\n line_item_adjustments: Line item adjustments\n line_items: Line items\n link: Link\n list: List\n live: Live\n loading: Loading\n loading_tree: Loading tree. Please wait…\n locale_changed: Locale Changed\n location: Location\n lock: Lock\n log_entries: Log Entries\n log_in: Log in\n log_in_to_continue: Log in to continue\n logged_in_as: Logged in as\n logged_in_successfully: Logged in successfully\n logged_out: You have been logged out.\n login: Login\n login_as_existing: Login as Existing Customer\n login_failed: Login authentication failed.\n login_name: Login\n logo: Logo\n logo_alt: Brand logo\n logout: Logout\n logs: Logs\n look_for_similar_items: Look for similar items\n mail_from_address: Mail from address\n mailer_logo: Mailer logo (JPG or PNG images only)\n make_active_at: Make Active At\n make_refund: Make refund\n make_sure_the_above_reimbursement_amount_is_correct: Make sure the above reimbursement amount is correct\n manage_promotion_categories: Manage Promotion Categories\n manage_variants: Manage Variants\n manual_intervention_required: Manual intervention required\n mark_as_default: Mark as default\n master: Master\n master_price: Master Price\n master_sku: Master SKU\n match_choices:\n all: All\n none: None\n max: Max\n max_items: Max Items\n media: Media\n memo: Memo\n meta_description: Meta Description\n meta_keywords: Meta Keywords\n meta_title: Meta Title\n metadata: Metadata\n min: Min\n minimal_amount: Minimal Amount\n missing_return_authorization: Missing Return Authorization for %{item_name}.\n month: Month\n more: More\n more_actions: More actions\n move: Move\n move_down: Move down\n move_stock_between_locations: Move Stock Between Locations\n move_up: Move up\n move_variant_to: Move variant to\n must_have_one_store: The resource must belong to a store.\n mutable: Mutable\n my_account: My Account\n my_addresses: My addresses\n my_orders: My Orders\n name: Name\n name_on_card: Name on card\n name_or_sku: Name or SKU (enter at least first 3 characters of product name)\n navigation: Navigation\n new: New\n new_address: New address\n new_adjustment: New Adjustment\n new_balance: New balance\n new_billing_address: New Billing Address\n new_country: New Country\n new_custom_domain: New Custom Domain\n new_customer: New Customer\n new_customer_return: New Customer Return\n new_digital_asset: New digital asset\n new_domain: New domain\n new_image: New Image\n new_line_item: Add line item\n new_market: New market\n new_nested_taxon: New nested taxon\n new_option_type: New Option Type\n new_order: New Order\n new_order_completed: New Order Completed\n new_order_notifications_email: New Order Notifications Email\n new_page: New Page\n new_password: New password\n new_payment: New Payment\n new_payment_method: New Payment Method\n new_post: New Post\n new_post_category: New Post Category\n new_product: New Product\n new_promotion: New Promotion\n new_promotion_category: New Promotion Category\n new_property: New Property\n new_prototype: New Prototype\n new_refund: New Refund\n new_refund_reason: New Refund Reason\n new_reimbursement_type: New Reimbursement Type\n new_return_authorization: New Return Authorization\n new_rma_reason: New RMA Reason\n new_role: New Role\n new_shipment_at_location: New shipment at location\n new_shipping_address: New Shipping Address\n new_shipping_category: New Shipping Category\n new_shipping_method: New Shipping Method\n new_state: New State\n new_stock_location: New Stock Location\n new_stock_movement: New Stock Movement\n new_stock_transfer: New Stock Transfer\n new_store: New Store\n new_store_credit: New Store Credit\n new_store_credit_category: New Store Credit Category\n new_tax_category: New Tax Category\n new_tax_rate: New Tax Rate\n new_taxon: New Taxon\n new_taxonomy: New Taxonomy\n new_tracker: New Tracker\n new_user: New User\n new_variant: New Variant\n new_zone: New Zone\n newsletters: Newsletters\n next: Next\n no_actions_added: No actions added\n no_address_given: No address given\n no_available_date_set: No available date set\n no_billing_address_available: No billing address available\n no_cc_type: N/A\n no_country: No country set\n no_email_provided: No email provided\n no_limits_zone: No Limits\n no_payment_found: No payment found\n no_payment_provider_settings_message: This payment provider has no custom settings available\n no_pending_payments: No pending payments\n no_product_available:\n for_this_quantity: Sorry, it looks like some products are not available in selected quantity.\n oops: Oops!\n no_products_added: No products added\n no_products_found: No products found\n no_resource_found: No %{resource} found\n no_results: No results\n no_returns_found: No returns found\n no_rules_added: No rules added\n no_saved_cards: No saved cards\n no_shipping_address_available: No shipping address available\n no_shipping_method_selected: No shipping method selected.\n no_state_changes: No state changes yet.\n no_tracking_present: No tracking details provided.\n none: None\n none_selected: None Selected\n normal_amount: Normal Amount\n not: not\n not_available: N/A\n not_enough_stock: There is not enough inventory at the source location to complete this transfer.\n not_found: "%{resource} is not found"\n not_risky: Not risky\n not_subscribed: Not subscribed\n note: Note\n notice_messages:\n icon_removed: Image has been successfully removed\n prices_saved: Prices successfully saved\n product_cloned: Product has been cloned\n product_deleted: Product has been deleted\n product_not_cloned: 'Product could not be cloned. Reason: %{error}'\n product_not_deleted: 'Product could not be deleted. Reason: %{error}'\n translations_saved: Translations successfully saved\n variant_deleted: Variant has been deleted\n variant_not_deleted: 'Variant could not be deleted. Reason: %{error}'\n notify_me_when_available: Notify me when available\n num_orders: "# Orders"\n number: Number\n ok: OK\n on_hand: On Hand\n only_active_products_can_be_added_to_cart: Draft and archived products cannot be added to cart, please mark the product as active before.\n only_left: Only %{count} left\n open: Open\n open_all_adjustments: Open All Adjustments\n option_name: Option name\n option_type: Option Type\n option_type_filterable_info: When an option type is set to Filterable, your storefront visitors are presented with the option to filter a taxon of products based on the option type. A typical example of this would be to filter clothing by size and color.<br><br><b>Please Note:</b> Filters will only be visible in the storefront taxons that contain products with this option type set.\n option_type_placeholder: Choose an option type\n option_types: Option Types\n option_value: Option Value\n option_values: Option Values\n optional: Optional\n options: Options\n or: or\n or_over_price: "%{price} or over"\n or_select_other_address: or select other address\n order: Order\n order_adjustments: Order adjustments\n order_again: Order again\n order_already_completed: Order already completed\n order_already_updated: The order has already been updated.\n order_approved: Order approved\n order_canceled: Order canceled\n order_details: Order Details\n order_email_resent: Order Email Resent\n order_email_resent_error: Order confirmation mail can only be sent for completed orders\n order_information: Order Information\n order_line_items: Order Line Items\n order_mailer:\n cancel_email:\n dear_customer: Hey %{name},\n instructions: Your order has been CANCELED. Please retain this cancellation information for your records.\n order_summary_canceled: Order %{number} Summary [CANCELED]\n subject: Cancellation of Order\n thanks: Thank you for\n confirm_email:\n dear_customer: Hey %{name},\n instructions: Please review and retain the following order information for your records.\n order_summary: Order %{number} Summary\n subject: Order Confirmation\n thanks: Thank you\n payment_link_email:\n message: Please click the button below to pay for your order.\n message_copy_link: 'If the button doesn''t work please copy and paste the following link to your browser:'\n pay_for_order: Pay for order\n subject: 'Payment link for order #%{number}'\n store_owner_notification_email:\n heading: New Order Received\n instructions: You have received a new order.\n order_summary: Order %{number} Summary\n subject: "%{store_name} received a new order"\n thanks: Thank you\n store_team: "%{store_name} Team"\n subtotal: 'Subtotal:'\n total: 'Order Total:'\n order_not_found: We couldn't find your order. Please try that action again.\n order_number: Order %{number}\n order_processed_successfully: Your order has been processed successfully\n order_resumed: Order resumed\n order_state:\n address: address\n awaiting_return: awaiting return\n canceled: canceled\n cart: cart\n complete: complete\n confirm: confirm\n considered_risky: considered risky\n delivery: delivery\n payment: payment\n resumed: resumed\n returned: returned\n order_status: Order status\n order_success: Order placed successfully\n order_success_explain: Your order information will be sent to your email\n order_summary: Order Summary\n order_sure_want_to: Are you sure you want to %{event} this order?\n order_total: Order Total\n order_updated: Order Updated\n orders: Orders\n origin: Origin\n other: Other\n out_of_stock: Out of Stock\n outstanding_balance: Outstanding Balance\n overview: Overview\n package_from: package from\n page: Page\n page_blocks:\n buttons:\n display_name: Button\n link:\n display_name: Link\n nav:\n label_default: Menu\n newsletter_form:\n button_text_default: Submit\n placeholder_default: Enter your email\n page_not_found: Sorry! Page you are looking can’t be found.\n page_sections:\n announcement_bar:\n default_text: Welcome to my Store!\n featured_taxon:\n button_text_default: Explore category\n heading_default: Beloved products\n featured_taxons:\n heading_default: Shop by category\n image_banner:\n heading_default: Welcome to your website\n text_default: This is the place to tell people about your business and what you do.\n image_with_text:\n heading_default: Welcome to our shop!\n text_default: At %{store_name} we offer a wide range of products for your home and business.\n newsletter:\n heading_default: Subscribe to our newsletter\n text_default: Thank you for choosing us as your trusted online shopping destination.\n page_title:\n display_name: Page Title\n related_products:\n heading_default: You might also like\n rich_text:\n heading_default: This is a heading\n text_default: This is a paragraph of text\n taxon_grid:\n heading_default: Brands we work with\n video:\n heading_1_default: Why I recommend it?\n heading_2_default: There's nothing like a soft hint of blush to add dimension and color to your look.\n page_settings: Page settings\n pages: Pages\n pages_defaults:\n homepage:\n featured_taxon_heading_new_arrivals: New arrivals\n featured_taxon_heading_on_sale: On sale\n image_with_text_heading: About us\n image_with_text_text: Welcome to our shop! We carefully curate high-quality products that we believe in. Our process involves rigorous testing and selection to ensure we only offer items that meet our standards. We're passionate about delivering exceptional value and service to our customers.\n password:\n newsletter_heading: Opening soon\n newsletter_text: Be the first one to know when we launch.\n pagination:\n next_page: next page &raquo;\n previous_page: "&laquo; previous page"\n truncate: "&hellip;"\n password: Password\n password_protected: Password protected\n paste: Paste\n path: Path\n pay: pay\n payment: Payment\n payment_amount: Payment amount\n payment_attempts: failed attempts\n payment_could_not_be_created: Payment could not be created.\n payment_identifier: Payment Identifier\n payment_information: Payment Information\n payment_method: Payment Method\n payment_method_not_supported: That payment method is unsupported. Please choose another one.\n payment_methods: Payment Methods\n payment_processing_failed: Payment could not be processed, please check the details you entered\n payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit\n payment_processor_choose_link: our payments page\n payment_provider_settings: Payment Provider Settings\n payment_source: Payment source\n payment_state: Payment State\n payment_states:\n balance_due: Balance due\n checkout: Checkout\n complete: Complete\n completed: Completed\n credit_owed: Credit owed\n failed: Failed\n paid: Paid\n partially_refunded: Partially Refunded\n pending: Pending\n processing: Processing\n refunded: Refunded\n void: Void\n payment_total: Payment Total\n payment_type: Payment type\n payment_updated: Payment Updated\n payments: Payments\n payments_count: Payments count\n pending: Pending\n pending_sale: Pending Sale\n percent: Percent\n percent_per_item: Percent Per Item\n permalink: Permalink\n permissions: Permissions\n personal_details: Personal details\n phone: Phone\n place_order: Place Order\n please_check_back_soon: Please check back soon.\n please_define_payment_methods: Please define some payment methods first.\n please_enter_reasonable_quantity: Please enter a reasonable quantity.\n please_select: Please select\n please_select_all_options: Please select all options\n policies: Policies\n populate_get_error: Something went wrong. Please try adding the item again.\n post_categories: Post categories\n posts: Posts\n powered_by: Powered by\n pre_tax_amount: Pre-Tax Amount\n pre_tax_refund_amount: Pre-Tax Refund Amount\n pre_tax_total: Pre-Tax Total\n preferred_reimbursement_type: Preferred Reimbursement Type\n presentation: Presentation\n preview: Preview\n preview_product: Preview Product\n preview_taxon: Preview Taxon\n previous: Previous\n previously_used_card: Previously Used Cards\n price: Price\n price_range: Price Range\n price_sack: Price Sack\n prices: Prices\n pricing: Pricing\n privacy_policy: Privacy Policy\n process: Process\n processing: Processing\n product: Product\n product_details: Product Details\n product_has_no_description: This product has no description\n product_name: Product Name\n product_not_available_in_this_currency: This product is not available in the selected currency.\n product_properties: Product Properties\n product_rule:\n choose_products: Choose products\n label: Order must contain x amount of these products\n match_all: all\n match_any: at least one\n match_none: none\n product_source:\n group: From product group\n manual: Manually choose\n product_sold_out: This item is sold out\n products: Products\n products_cannot_be_shipped: We cannot ship %{product_names} to your current location at the moment. Please change your shipping address or remove %{product_names} from your cart.\n products_sort_options:\n best_selling: Best Selling\n manual: Manual\n name_a_z: Alphabetically, A-Z\n name_z_a: Alphabetically, Z-A\n newest_first: Newest\n oldest_first: Oldest\n price_high_to_low: Price (high-low)\n price_low_to_high: Price (low-high)\n relevance: Relevance\n promotion: Promotion\n promotion_action: Promotion Action\n promotion_action_types:\n create_adjustment:\n description: Creates a promotion credit adjustment on the order\n name: Create whole-order adjustment\n create_item_adjustments:\n description: Creates a promotion credit adjustment on a line item\n name: Create per-line-item adjustment\n create_line_items:\n description: Populates the cart with the specified quantity of variant\n name: Create line items\n free_shipping:\n description: Makes all shipments for the order free\n name: Free shipping\n promotion_actions: Actions\n promotion_already_used: You can not destroy promotion that was already applied\n promotion_category: Promotion Category\n promotion_cloned: Promotion has been cloned\n promotion_form:\n match_policies:\n all: Match all of these rules\n any: Match any of these rules\n promotion_label: Promotion (%{name})\n promotion_not_cloned: 'Promotion has not been cloned. Reason: %{error}'\n promotion_rule: Promotion Rule\n promotion_rule_types:\n country:\n description: Limit to orders with shipping address in a specific country\n name: Country\n currency:\n description: Limit to orders in a specific currency\n name: Currency\n first_order:\n description: Must be the customer's first order\n name: First order\n item_total:\n description: Order total meets these criteria\n name: Item total\n one_use_per_user:\n description: Only One Use Per User\n name: One Use Per User\n option_value:\n description: Order includes products with matching option value(s)\n name: Option Value(s)\n product:\n description: Order includes specified product(s)\n name: Product(s)\n taxon:\n description: Order includes products with specified taxon(s)\n name: Taxon(s)\n user:\n description: Available only to the specified customers\n name: User\n user_logged_in:\n description: Available only to logged in users\n name: User Logged In\n promotion_uses: Promotion uses\n promotionable: Promotable\n promotions: Promotions\n propagate_all_variants: Propagate all variants\n properties: Properties\n property: Property\n prototype: Prototype\n prototypes: Prototypes\n provider: Provider\n provider_settings_warning: If you are changing the provider type, you must save first before you can edit the provider settings\n published_at: Published at\n purchased_quantity: Purchased Quantity\n qty: Qty\n quantity: Quantity\n quantity_returned: Quantity Returned\n quantity_shipped: Quantity Shipped\n query: Query\n quick_search: Quick search..\n rate: Rate\n read_less: Read less\n read_more: Read more\n reason: Reason\n receive: receive\n receive_stock: Receive Stock\n received: Received\n reception_status: Reception Status\n reference: Reference\n reference_contains: Reference Contains\n refund: Refund\n refund_amount: Refund Amount\n refund_amount_must_be_greater_than_zero: Refund amount must be greater than zero\n refund_reasons: Refund Reasons\n refunded_amount: Refunded Amount\n refunds: Refunds\n register: Register\n registration: Registration\n regular_price: Regular price\n reimburse: Reimburse\n reimbursed: Reimbursed\n reimbursement: Reimbursement\n reimbursement_mailer:\n reimbursement_email:\n days_to_send: You have %{days} days to send back any items awaiting exchange.\n dear_customer: Dear %{name},\n exchange_summary: Exchange Summary\n for: for\n instructions: Your reimbursement has been processed.\n refund_summary: Refund Summary\n store_team: "%{store_name} Team"\n subject: Reimbursement Notification\n thanks: Thank you for your business.\n total_refunded: 'Total refunded: %{total}'\n reimbursement_perform_failed: 'Reimbursement could not be performed. Error: %{error}'\n reimbursement_status: Reimbursement status\n reimbursement_type: Reimbursement type\n reimbursement_type_override: Reimbursement Type Override\n reimbursement_types: Reimbursement Types\n reimbursements: Reimbursements\n reject: Reject\n reject_reason: Reject Reason\n rejected: Rejected\n remember_me: Remember me\n remove: Remove\n remove_condition: Remove condition\n remove_image: Remove Image\n rename: Rename\n report: Report\n report_mailer:\n greeting: Hi %{user_name},\n report_done:\n message: Please use the link below to download it.\n subject: Your report %{report_name} is ready\n thanks: Thank you,\n report_names:\n products_performance: Products performance\n sales_total: Sales total\n reports: Reports\n required: "*"\n required_fields: required fields\n resellable: Resellable\n resend: Resend\n reset_password: Reset my password\n response_code: Response Code\n restore_defaults: Restore defaults\n resume: resume\n resumed: Resumed\n return: return\n return_authorization: Return Authorization\n return_authorization_canceled: Return authorization canceled\n return_authorization_reasons: Return Authorization Reasons\n return_authorization_states:\n authorized: Authorized\n canceled: Canceled\n return_authorization_updated: Return authorization updated\n return_authorizations: Return Authorizations\n return_item_inventory_unit_ineligible: Return item's inventory unit must be shipped\n return_item_inventory_unit_reimbursed: Return item's inventory unit is already reimbursed\n return_item_order_not_completed: Return item's order must be completed\n return_item_rma_ineligible: Return item requires an RMA\n return_item_time_period_ineligible: Return item is outside the eligible time period\n return_items: Return Items\n return_items_cannot_be_associated_with_multiple_orders: Return items cannot be associated with multiple orders.\n return_number: Return Number\n return_quantity: Return Quantity\n returned: Returned\n returns: Returns\n returns_policy: Returns Policy\n review: Review\n risk: Risk\n risk_analysis: Risk Analysis\n risky: Risky\n rma_credit: RMA Credit\n rma_number: RMA Number\n rma_value: RMA Value\n role_id: Role ID\n roles: Roles\n rules: Rules\n safe: Safe\n sale: Sale\n sale_price: Sale price\n sales_total: Sales Total\n sales_total_description: Sales Total For All Orders\n sales_totals: Sales Totals\n same_as_shipping_address: Same as shipping address\n save_and_continue: Save and Continue\n save_my_address: Save my address\n saving: Saving\n say_no: 'No'\n say_yes: 'Yes'\n scope: Scope\n scopes: Scopes\n search: Search\n search_all: Search all\n search_by: 'Search by:'\n search_engine_listing: Search engine listing\n search_order_number: Order Number\n search_results: Search results for '%{keywords}'\n search_results_for: Search results for %{query}\n searching: Searching\n secure_connection_type: Secure Connection Type\n security: Security\n security_settings: Security Settings\n seed:\n shipping:\n categories:\n default: Default\n digital: Digital\n select: Select\n select_a_date: Select a date\n select_a_date_range: Select a date range\n select_a_return_authorization_reason: Select a reason for the return authorization\n select_a_stock_location: Select a stock location\n select_a_store_credit_reason: Select a reason for the store credit\n select_an_option: Select an option\n select_existing_address: Select existing address\n select_from_prototype: Select From Prototype\n select_stock: Select stock\n select_stores: Select Store(s)\n select_user: Select customer\n selected_quantity_not_available: selected of %{item} is not available.\n send_copy_of_all_mails_to: Send Copy of All Mails To\n send_mails_as: Send Mails As\n send_message: Send message\n send_payment_link: Send payment link\n send_payment_link_title: Send payment link to the customer by email. They will be able to complete the payment later.\n send_us_a_message: Send us a message\n seo: SEO\n seo_robots: SEO Robots\n seo_title: SEO Title\n server: Server\n server_error: The server returned an error\n settings: Settings\n ship: Ship\n ship_address: Ship Address\n ship_to: 'Shipping to:'\n ship_total: Ship Total\n shipment: Shipment\n shipment_adjustments: Shipment adjustments\n shipment_details: From %{stock_location} via %{shipping_method}\n shipment_mailer:\n shipped_email:\n dear_customer: Dear %{name},\n instructions: Your order %{number} has been shipped\n shipment_summary: Shipment Summary for order\n shipping_method: 'Shipping method: %{shipping_method}'\n store_team: "%{store_name} Team"\n subject: Shipment Notification\n thanks: Thank you for your business.\n track_information: 'Tracking Information: %{tracking}'\n track_link: 'Tracking Link: %{url}'\n shipment_refunded_message: You will receive a refund in the next few days.\n shipment_state: Shipment State\n shipment_states:\n backorder: Backorder\n canceled: Canceled\n partial: Partial\n pending: Pending\n ready: Ready\n shipped: Shipped\n shipment_successfully_shipped: Shipment successfully shipped\n shipment_transfer_error: There was an error transferring variants\n shipment_transfer_success: Variants successfully transferred\n shipments: Shipments\n shipped: Shipped\n shipped_from: Shipped from\n shipping: Shipping\n shipping_address: Shipping Address\n shipping_categories: Shipping Categories\n shipping_category: Shipping Category\n shipping_flat_rate_per_item: Flat rate per package item\n shipping_flat_rate_per_order: Flat rate\n shipping_flexible_rate: Flexible Rate per package item\n shipping_instructions: Shipping Instructions\n shipping_method: Shipping Method\n shipping_methods: Shipping Methods\n shipping_not_available: Shipping not available\n shipping_policy: Shipping Policy\n shipping_price_sack: Price sack\n shipping_rates:\n display_price:\n excluding_tax: "%{price} (+ %{tax_amount} %{tax_rate_name})"\n including_tax: "%{price} (incl. %{tax_amount} %{tax_rate_name})"\n shipping_total: Shipping total\n shipping_zone: Shipping Zone\n shop_all: Shop All\n shop_by_taxonomy: Shop by %{taxonomy}\n shopping_cart: Shopping Cart\n show: Show\n show_active: Show Active\n show_all: Show all\n show_deleted: Show Deleted\n show_details: Show details\n show_discontinued: Show Discontinued\n show_less: Show less\n show_only_complete_orders: Only show complete orders\n show_only_considered_risky: Only show risky orders\n show_property: Show Property\n show_rate_in_label: Show rate in label\n show_report: Show report\n show_store_selector:\n long: Display the Store selector in the main nav bar of Storefront and allow users to change Store and Currency\n short: Show Store selector\n sign_out: Sign out\n sign_up: Sign Up\n site_name: Site name\n size: Size\n sku: SKU\n skus: SKUs\n slug: Slug\n social: Social\n social_media: Social media\n sold_out: Sold out\n something_went_wrong: Something went wrong\n sort_by: Sort by\n source: Source\n special_instructions: Special Instructions\n split: Split\n spree_gateway_error_flash_for_checkout: There was a problem with your payment information. Please check your information and try again.\n square_image: Square image\n ssl:\n change_protocol: Please switch to using HTTP (rather than HTTPS) and retry this request.\n standards_and_formats: Standards and formats\n start: Start\n start_typing_to_search_for_products: Start typing to search for products\n start_typing_to_search_for_variants: Start typing to search for variants\n starting_from: Starts at\n state: State\n state_based: State Based\n state_changes: State Changes\n state_machine_states:\n accepted: Accepted\n address: Address\n authorized: Authorized\n awaiting: Awaiting\n awaiting_return: Awaiting return\n backordered: Back ordered\n canceled: Canceled\n cart: Cart\n checkout: Checkout\n closed: Closed\n complete: Complete\n completed: Completed\n confirm: Confirm\n delivery: Delivery\n errored: Errored\n failed: Failed\n given_to_customer: Given to customer\n invalid: Invalid\n manual_intervention_required: Manual intervention required\n on_hand: On hand\n open: Open\n order: Order\n payment: Payment\n pending: Pending\n processing: Processing\n ready: Ready\n reimbursed: Reimbursed\n resumed: Resumed\n returned: Returned\n shipment: Shipment\n shipped: Shipped\n void: Void\n states: States\n states_required: States Required\n status: Status\n stock: Stock\n stock_items: Stock Items\n stock_location: Stock Location\n stock_location_info: Stock location info\n stock_locations: Stock Locations\n stock_locations_need_a_default_country: You must create a default country before creating a stock location.\n stock_management: Stock Management\n stock_management_requires_a_stock_location: Please create a stock location in order to manage stock.\n stock_movements: Stock Movements\n stock_movements_for_stock_location: Stock Movements for %{stock_location_name}\n stock_successfully_transferred: Stock was successfully transferred between locations.\n stock_transfer:\n errors:\n must_have_variant: You must add at least one variant\n same_location: cannot be the same as the destination location\n variants_unavailable: Some variants are not available on %{stock}\n stock_transfer_name: Stock Transfer\n stock_transfers: Stock Transfers\n stop: Stop\n store: Store\n store_credit:\n additional_payment_needed: Select another payment method for the remaining <strong>%{amount}</strong>.\n allocated: Added\n applicable_amount: "<strong>%{amount}</strong> in store credit will be applied to this order."\n apply: Apply\n authorized: Authorized\n available_amount: You have <strong>%{amount}</strong> in Store Credit available!\n captured: Used\n credit: Credit\n errors:\n cannot_change_used_store_credit: You cannot change a store credit that has already been used\n unable_to_create: Unable to create store credit\n unable_to_delete: Unable to delete store credit\n unable_to_fund: Unable to pay for order using store credits\n unable_to_update: Unable to update store credit\n remaining: Remaining\n remaining_amount: You have <strong>%{amount}</strong> remaining in your account's Store Credit.\n remove: Remove\n store_credit_categories: Store Credit Categories\n store_credit_name: Store Credit\n store_credit_payment_method:\n currency_mismatch: Store credit currency does not match order currency\n insufficient_authorized_amount: Unable to capture more than authorized amount\n insufficient_funds: Store credit amount remaining is not sufficient\n select_one_store_credit: Select store credit to go towards remaining balance\n successful_action: Successful store credit %{action}\n unable_to_credit: 'Unable to credit code: %{auth_code}'\n unable_to_find: Could not find store credit\n unable_to_find_for_action: 'Could not find store credit for auth code: %{auth_code} for action: %{action}'\n unable_to_void: 'Unable to void code: %{auth_code}'\n store_credits: Store Credits\n store_default: Default store\n store_details: Store details\n store_errors:\n unable_to_create: Unable to create store.\n unable_to_delete: Unable to delete store.\n unable_to_update: Unable to update store.\n store_form:\n checkout_zone_help: Selecting zone will limit to which Countries or States products are shipped. For more information <a href='https://guides.spreecommerce.org/user/configuration/configuring_geography.html#zones' target='_blank' class='alert-link'>please see documentation</a>\n code_help: Store unique identifier, which is an abbreviated version of the store’s name (used as the layout directory name, and also helpful for separating templates by store)\n customer_support_email_help: This email is visible to your Store visitors in the Footer section\n default_country_help: This is the Country that will be pre-selected on the Checkout Address form\n footer_help: This content is visible in the footer section of your Store\n locales_help: Install <a href='https://github.com/spree-contrib/spree_i18n' target='_blank' class='alert-link'>Spree I18n extension</a> to add more locales\n mail_from_address_help: This is the email which will be the sender of all your Store emails (Order Confirmation, Shipment notification etc)\n new_order_notifications_email_help: If you want to receive an email notification every time someone places an Order please provide an email address for that notification to be sent to\n seo_robots: Please check <a href='https://developers.google.com/search/reference/robots_meta_tag' target='_blank'>this page for more help</a>\n social_help: If you want to link to your social accounts in the footer part of your website please fill below fields\n store_name: Store name\n store_not_set_as_default: Couldn't set store %{store} as a default store\n store_set_as_default: Store %{store} is now a default store\n store_set_default_button: Set as default\n stores: Stores\n street_address: Street Address\n street_address_2: Street Address (cont'd)\n subscribed: Subscribed\n subtotal: Subtotal\n subtract: Subtract\n success: Success\n successfully_created: "%{resource} has been successfully created!"\n successfully_refunded: "%{resource} has been successfully refunded!"\n successfully_removed: "%{resource} has been successfully removed!"\n successfully_updated: "%{resource} has been successfully updated!"\n summary: Summary\n support: Support\n supported_currencies: Supported Currencies\n supported_currencies_long: A comma separated list of supported currencies\n supported_locales: Supported Locales\n switch_store: Switch store\n switch_team: Switch team\n tags: Tags\n tags_placeholder: Add Tags\n tax: Tax\n tax_categories: Tax Categories\n tax_category: Tax Category\n tax_code: Tax Code\n tax_included: Tax (incl.)\n tax_rate_amount_explanation: Tax rates are a decimal amount to aid in calculations, (i.e. if the tax rate is 5% then enter 0.05)\n tax_rates: Tax Rates\n taxes: Taxes\n taxon: Taxon\n taxon_edit: Edit Taxon\n taxon_missing_alt: Category banner description\n taxon_placeholder: Add a Taxon\n taxon_rule:\n choose_taxons: Choose taxons\n label: Order must contain x amount of these taxons\n match_all: all\n match_any: at least one\n taxonomies: Taxonomies\n taxonomy: Taxonomy\n taxonomy_brands_name: Brands\n taxonomy_categories_name: Categories\n taxonomy_collections_name: Collections\n taxonomy_edit: Edit taxonomy\n taxonomy_tree_error: The requested change has not been accepted and the tree has been returned to its previous state, please try again.\n taxonomy_tree_instruction: "* Right click (or double tap on iOS device) a child in the tree to access the menu for adding, deleting or sorting a child."\n taxons: Taxons\n terms_of_service: Terms of Service\n test: Test\n test_mailer:\n test_email:\n greeting: Congratulations!\n message: If you have received this email, then your email settings are correct.\n subject: Test Mail\n test_mode: Test Mode\n text_alignment: Text alignment\n thank_you_for_your_order: Thank you for your business. Please print out a copy of this confirmation page for your records.\n theme: Theme\n theme_copied: Theme has been successfully copied.\n theme_duplicating: Theme is still duplicating\n theme_is_now_live: Theme is now live\n theme_not_copied: 'Theme could not be copied with errors: %{error}'\n theme_settings:\n accent_color: Accent color\n background_color: Background color\n border_color: Border color\n brand_color: Brand color\n button_border_color: Button border color\n button_text_color: Button text color\n danger_color: Danger color\n input_text_color: Input text color\n neutral_color: Neutral color\n success_color: Success color\n text_color: Text color\n themes: Themes\n there_are_no_items_for_this_order: There are no items for this order\n there_were_problems_with_the_following_fields: There were problems with the following fields\n this_order_has_already_received_a_refund: This order has already received a refund\n thumbnail: Thumbnail\n tiered_flat_rate: Tiered Flat Rate\n tiered_percent: Tiered Percent\n tiers: Tiers\n time: Time\n timezone: Timezone\n title: Title\n title_link: Title link\n to_add_variants_you_must_first_define: To add variants, you must first define\n toggle_menu: Toggle menu\n top_suggestions: Top suggestions\n total: Total\n total_per_item: Total per item\n total_pre_tax_refund: Total Pre-Tax Refund\n total_price: Total price\n total_sales: Total Sales\n track_inventory: Track Inventory\n track_items: Track items\n track_quantity: Track quantity\n tracking: Tracking\n tracking_number: Tracking Number\n tracking_url: Tracking URL\n tracking_url_placeholder: e.g. http://quickship.com/package?num=:tracking\n transaction_id: Transaction ID\n transaction_id_help: This is the ID of the transaction that was created in the 3rd party payment gateway.\n transfer_from_location: Transfer From\n transfer_stock: Transfer Stock\n transfer_to_location: Transfer To\n translations: Translations\n translations_for: "%{resource_name} translations"\n tree: Tree\n true_label: 'TRUE'\n twitter: Twitter\n type: Type\n type_to_search: Type to search\n unable_to_connect_to_gateway: Unable to connect to gateway.\n unable_to_create_reimbursements: Unable to create reimbursements because there are items pending manual intervention.\n under_price: Under %{price}\n unit: Unit\n unit_system: Unit system\n unit_systems:\n imperial_system: Imperial system\n metric: metric\n metric_system: Metric system\n unlock: Unlock\n unrecognized_card_type: Unrecognized card type\n unshippable_items: Unshippable Items\n update: Update\n update_address: Update address\n update_billing_address: Update billing address\n update_contact_information: Update contact information\n update_shipping_address: Update shipping address\n updated_at: Updated at\n updating: Updating\n upload_image: Upload image\n url: URL\n usage_limit: Usage Limit\n use_app_default: Use App Default\n use_billing_address: Use Billing Address\n use_existing_cc: Use an existing card on file\n use_new_cc: Use a new card\n use_new_cc_or_payment_method: Use a new card / payment method\n use_s3: Use Amazon S3 For Images\n use_shipping_address: Use Shipping Address\n used: Used\n user: User\n user_not_found: User not found\n user_rule:\n choose_users: 'Input the full email address of a registered customer(s) in the search field to whom this discount should apply:'\n users: Users\n validation:\n cannot_be_less_than_shipped_units: cannot be less than the number of shipped units.\n cannot_destroy_line_item_as_inventory_units_have_shipped: Cannot destroy line item as some inventory units have shipped.\n exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.\n is_too_large: is too large -- stock on hand cannot cover requested quantity!\n must_be_int: must be an integer\n must_be_non_negative: must be a non-negative value\n unpaid_amount_not_zero: 'Amount was not fully reimbursed. Still due: %{amount}'\n value: Value\n variant: Variant\n variant_placeholder: Choose a variant\n variant_prices_search_placeholder: Search for SKU or variant name...\n variants: Variants\n variants_count: Variants count\n vendor: Vendor\n vendors: Vendors\n version: Version\n view: View\n view_all: View all\n view_full_details: View full details\n view_store: View store\n view_your_store: View your store\n visibility: Visibility\n visits: Visits\n void: Void\n we_are_busy_updating: We're updating the %{store_name} homepage.\n we_are_busy_updating_page: We're busy updating this page.\n we_will_be_back: We will be back.\n webhooks: Webhooks\n weight: Weight\n weight_unit: Weight unit\n weight_units:\n gram: Gram (g)\n kilogram: Kilogram (kg)\n ounce: Ounce (oz)\n pound: Pound (lb)\n what_is_a_cvv: What is a (CVV) Credit Card Code?\n what_is_this: What's This?\n width: Width\n wishlist: Wishlist\n without_taxon: Without taxon\n year: Year\n you_have_no_orders_yet: You have no orders yet\n your_cart_is_empty: Your cart is empty\n your_order_is_empty_add_product: Your order is empty, please search for and add a product above\n zip: Zip\n zipcode: Zip Code\n zipcode_required: Zip Code Required\n zone: Zone\n zones: Zones\n views:\n pagination:\n truncate: Truncate\n
dataset_sample\yaml\spree_spree\core\config\locales\en.yml
en.yml
YAML
85,319
0.75
0.028138
0
vue-tools
331
2024-02-01T16:56:57.977030
BSD-3-Clause
false
212fa6121031aae803e03c90d16d0a7c
<% if agent_number = ENV['TC_AGENT_NUMBER']\ndatabase_prefix = agent_number + '_'\nend %>\n<% if options[:lib_name]\n lib_name = options[:lib_name].gsub('/', '_')\nend %>\n<% db_password = ENV['DB_PASSWORD'] %>\n<% db_username = ENV['DB_USERNAME'] %>\n<% db_host = ENV['DB_HOST'] %>\n<% case ENV['DB']\n when 'sqlite' %>\ndevelopment:\n adapter: sqlite3\n database: db/spree_development.sqlite3\ntest:\n adapter: sqlite3\n database: db/spree_test.sqlite3\n timeout: 10000\nproduction:\n adapter: sqlite3\n database: db/spree_production.sqlite3\n<% when 'mysql' %>\nmysql: &mysql\n adapter: mysql2\n encoding: utf8\n <% unless db_username.blank? %>\n username: <%= db_username %>\n <% end %>\n <% unless db_password.blank? %>\n password: <%= db_password %>\n <% end %>\n <% unless db_host.blank? %>\n host: <%= db_host %>\n <% end %>\n reconnect: true\n pool: 5\n\ndevelopment:\n <<: *mysql\n database: <%= database_prefix %><%= lib_name %>_spree_development\ntest:\n <<: *mysql\n database: <%= database_prefix %><%= lib_name %>_spree_test\nproduction:\n <<: *mysql\n database: <%= database_prefix %><%= lib_name %>_spree_production\n<% when 'postgres' %>\npostgres: &postgres\n adapter: postgresql\n <% unless db_username.blank? %>\n username: <%= db_username || 'postgres' %>\n <% end %>\n <% unless db_password.blank? %>\n password: <%= db_password %>\n <% end %>\n <% unless db_host.blank? %>\n host: <%= db_host %>\n <% end %>\n min_messages: warning\n pool: <%= ENV["DB_POOL"] || 50 %>\n\ndevelopment:\n <<: *postgres\n database: <%= database_prefix %><%= lib_name %>_spree_development\ntest:\n <<: *postgres\n database: <%= database_prefix %><%= lib_name %>_spree_test\nproduction:\n <<: *postgres\n database: <%= database_prefix %><%= lib_name %>_spree_production\n<% else %>\ndevelopment:\n adapter: sqlite3\n database: db/spree_development.sqlite3\ntest:\n adapter: sqlite3\n database: db/spree_test.sqlite3\nproduction:\n adapter: sqlite3\n database: db/spree_production.sqlite3\n<% end %>
dataset_sample\yaml\spree_spree\core\lib\generators\spree\dummy\templates\rails\database.yml
database.yml
YAML
1,971
0.7
0.025
0
awesome-app
661
2023-11-06T07:01:34.748819
BSD-3-Clause
false
75cab769a72669920ad1e8867fbb894e
openapi: 3.0.3\nservers:\n - url: 'https://demo.spreecommerce.org'\n description: demo\n - url: 'http://localhost:3000'\n description: localhost\ninfo:\n version: 1.0.0\n title: Authentication\n description: Spree uses oAuth based Authentication via short-lived Bearer tokens. You can either create a new one or refresh existing token.\n contact:\n name: Vendo Connect Inc.\n url: 'https://getvendo.com'\n email: sales@getvendo.com\n license:\n url: 'https://github.com/spree/spree/blob/main/LICENSE.md'\n name: AGPL-3.0-or-later\npaths:\n /spree_oauth/token:\n post:\n description: |-\n This endpoint creates a new Bearer Token or refreshes an existing Bearer Token.\n\n The `token` found in the response body is required to authorize API calls.\n operationId: create-or-refresh-token\n responses:\n '200':\n description: Token was successfully created or refreshed.\n content:\n application/json:\n schema:\n $ref: '#/components/schemas/Token'\n examples:\n Storefront User Token:\n value:\n access_token: SfM3k8kq5Wkc6xz6rgMlsl-mbygJ1ptq4DR0Ah51vjA\n token_type: Bearer\n expires_in: 7200\n refresh_token: SqJDIwX00fehqHxS6xmb-kzqAlrYe_0EHgekMexVT8k\n created_at: 1581873931\n Platform User Token:\n value:\n access_token: 2480c16561d1391ea81ca5336b651e9a29f4524f6dee8c7f3f02a600159189c3\n token_type: Bearer\n expires_in: 7200\n refresh_token: f5d78642252eeb3f3001f67b196ac21a27afc030462a54060b0ebbdae2b8dc9c\n scope: admin\n created_at: 1539863418\n Refreshed Token:\n value:\n access_token: Es9lLPW2mVaDB80I-I_OdQCw3JfOT1s19YN1naFWx98\n token_type: Bearer\n expires_in: 7200\n refresh_token: j92BxulqIIYtiiaBsuAM1TzGsGSVxaykT4kk8OYHGNY\n created_at: 1581876572\n requestBody:\n required: true\n content:\n application/json:\n schema:\n oneOf:\n - $ref: '#/components/schemas/CreateTokenBody'\n - $ref: '#/components/schemas/ClientTokenBody'\n - $ref: '#/components/schemas/RefreshTokenBody'\n examples:\n Create Storefront API User Token:\n value:\n grant_type: password\n username: spree@example.com\n password: spree123\n Create Platform API User Token:\n value:\n client_id: 7ZY15L7crVZul8i3PZPrnpOkEURK7xnXEWRZdE6K39M\n client_secret: cxMZ0tbe604qj_13hibNmc3GDsXUQfpzHt9PvweihFc\n grant_type: password\n username: spree@example.com\n password: spree123\n scope: admin\n Create Platform API Application Token:\n value:\n grant_type: client_credentials\n client_id: 7ZY15L7crVZul8i3PZPrnpOkEURK7xnXEWRZdE6K39M\n client_secret: cxMZ0tbe604qj_13hibNmc3GDsXUQfpzHt9PvweihFc\n scope: admin\n Refresh a Token:\n value:\n grant_type: refresh_token\n refresh_token: SqJDIwX00fehqHxS6xmb-kzqAlrYe_0EHgekMexVT8k\n application/xml:\n schema:\n type: object\n properties: {}\n description: ''\n summary: Create or Refresh a Token\n tags:\n - Token\ncomponents:\n schemas:\n Token:\n x-examples:\n create token:\n access_token: SfM3k8kq5Wkc6xz6rgMlsl-mbygJ1ptq4DR0Ah51vjA\n token_type: Bearer\n expires_in: 7200\n refresh_token: SqJDIwX00fehqHxS6xmb-kzqAlrYe_0EHgekMexVT8k\n created_at: 1581873931\n refresh token:\n access_token: Es9lLPW2mVaDB80I-I_OdQCw3JfOT1s19YN1naFWx98\n token_type: Bearer\n expires_in: 7200\n refresh_token: j92BxulqIIYtiiaBsuAM1TzGsGSVxaykT4kk8OYHGNY\n created_at: 1581876572\n type: object\n properties:\n access_token:\n type: string\n example: 2480c16561d1391ea81ca5336b651e9a29f4524f6dee8c7f3f02a600159189c3\n token_type:\n type: string\n example: Bearer\n default: Bearer\n expires_in:\n type: integer\n example: 7200\n description: Time (in seconds) after which the access token will expire\n refresh_token:\n type: string\n example: f5d78642252eeb3f3001f67b196ac21a27afc030462a54060b0ebbdae2b8dc9c\n scope:\n type: string\n example: admin\n default: admin\n created_at:\n type: integer\n example: 1539863418\n required:\n - access_token\n - token_type\n - expires_in\n - refresh_token\n - created_at\n x-internal: false\n CreateTokenBody:\n type: object\n x-examples:\n User Token:\n grant_type: password\n username: spree@example.com\n password: spree123\n Application Token:\n grant_type: password\n username: spree@example.com\n password: spree123\n scope: admin\n x-internal: false\n title: 'Create a new token (grant_type: password)'\n description: ''\n properties:\n grant_type:\n type: string\n description: ''\n example: password\n enum:\n - password\n username:\n type: string\n description: User email address\n example: spree@example.com\n password:\n type: string\n description: User password\n example: spree123\n scope:\n type: string\n enum:\n - admin\n description: 'Pass the value `admin` to create a Platform User Token, allowing access to the Platform API.'\n nullable: true\n required:\n - grant_type\n - username\n - password\n ClientTokenBody:\n type: object\n x-examples:\n example-1:\n grant_type: refresh_token\n refresh_token: SqJDIwX00fehqHxS6xmb-kzqAlrYe_0EHgekMexVT8k\n x-internal: false\n title: 'Create a new token (grant_type: client_credentials)'\n description: ''\n properties:\n grant_type:\n type: string\n example: client_credentials\n enum:\n - client_credentials\n client_id:\n type: string\n description: Use the client id\n example: 27af95fd57a424e5d01aaf5eab\n client_secret:\n type: string\n example: 1324a8d5c0ca57daf384fae39f811a5144330143301'\n description: Client secret key.\n required:\n - grant_type\n - client_id\n - client_secret\n RefreshTokenBody:\n type: object\n x-examples:\n example-1:\n grant_type: refresh_token\n refresh_token: SqJDIwX00fehqHxS6xmb-kzqAlrYe_0EHgekMexVT8k\n x-internal: false\n title: 'Refresh an existing token (grant_type: refresh_token)'\n description: ''\n properties:\n grant_type:\n type: string\n example: refresh_token\n enum:\n - refresh_token\n refresh_token:\n type: string\n description: Refresh token obtained from the create token response\n example: 27af95fd57a424e5d01aaf5eab1324a8d5c0ca57daf384fae39f811a5144330143301'\n required:\n - grant_type\n - refresh_token\ntags:\n - name: Token\n
dataset_sample\yaml\spree_spree\docs\api-reference\oauth.yml
oauth.yml
YAML
7,771
0.95
0
0
node-utils
502
2024-03-27T00:09:13.523652
GPL-3.0
false
0e52890868efa1042fdebae81b8a1ba0
exclude_patterns:\n - "src/backend/distributed/utils/citus_outfuncs.c"\n - "src/backend/distributed/deparser/ruleutils_*.c"\n - "src/include/distributed/citus_nodes.h"\n - "src/backend/distributed/safeclib"\n - "src/backend/columnar/safeclib"\n - "**/vendor/"\n
dataset_sample\yaml\sql\.codeclimate.yml
.codeclimate.yml
YAML
260
0.7
0
0
python-kit
965
2024-05-24T05:53:43.303008
Apache-2.0
false
c4ba831830f5040991d8e2d26fe3752d
# If it says that commit YAML is invalid again,\n# validate it with:\n# curl --data-binary @.codecov.yml https://codecov.io/validate\n# More docs: https://docs.codecov.com/docs/codecov-yaml#repository-yaml\nignore:\n - "test/src"\ncoverage:\n status:\n project:\n default:\n flags:\n - pr\n
dataset_sample\yaml\sql\.codecov.yml
.codecov.yml
YAML
304
0.8
0
0.333333
react-lib
599
2023-07-21T18:38:34.623520
MIT
false
99f7e6199293473e38b0eb8d56c20261
version: build-{build}~branch-{branch}\n\nclone_depth: 1\n\nenvironment:\n OPENSSL_ROOT_DIR: C:/OpenSSL-v32-Win64\n\nbuild_script:\n # dump some system info\n - echo processor='%PROCESSOR_IDENTIFIER%' , processor count= %NUMBER_OF_PROCESSORS%\n - cd %APPVEYOR_BUILD_FOLDER%\n # Disable unneeded submodules for the faster build\n - git config submodule.storage/columnstore/columnstore.update none\n - git config submodule.storage/maria/libmarias3.update none\n - git config submodule.storage/rocksdb/rocksdb.update none\n - git config submodule.wsrep-lib.update none\n # Build minimal configuration\n - mkdir _build\n - cd _build\n - set BUILD_TYPE=MinSizeRel\n - set PATH=%OPENSSL_ROOT_DIR%;%PATH%\n - set GENERATOR=-GNinja\n - call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"\n - cmake -E time cmake %GENERATOR% .. -DWITH_SSL=system -DHAVE_OPENSSL_APPLINK_C=1 -DOPENSSL_ROOT_DIR=%OPENSSL_ROOT_DIR% -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DMYSQL_MAINTAINER_MODE=ERR -DFAST_BUILD=1 -DBISON_EXECUTABLE=C:\cygwin64\bin\bison.exe -DPLUGIN_PERFSCHEMA=NO -DPLUGIN_FEEDBACK=NO\n - set /A jobs=2*%NUMBER_OF_PROCESSORS%\n - cmake -E time cmake --build . -j %jobs% --config %BUILD_TYPE% --target minbuild\n\ntest_script:\n - set PATH=C:\Strawberry\perl\bin;%OPENSSL_ROOT_DIR%;%PATH%;C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\n - cd %APPVEYOR_BUILD_FOLDER%\_build\mysql-test\n - set /A parallel=4*%NUMBER_OF_PROCESSORS%\n - perl mysql-test-run.pl --force --max-test-fail=10 --retry=2 --parallel=%parallel% --testcase-timeout=4 --suite=main --skip-test-list=%APPVEYOR_BUILD_FOLDER%\win\appveyor_skip_tests.txt --mysqld=--loose-innodb-flush-log-at-trx-commit=2\n\nskip_commits:\n files:\n - debian/\n - '**/*.sh'\n\nbranches:\n only:\n - /bb-/\n - /\d+\.\d+$/\n - main\n\nimage: Visual Studio 2022\n
dataset_sample\yaml\sql\appveyor.yml
appveyor.yml
YAML
1,833
0.8
0.022222
0.078947
vue-tools
111
2025-06-23T15:13:12.592261
MIT
false
29379afcc05d755381c4a10baefb4d40
\nname: "CodeQL"\n\non: push\n # schedule:\n # - cron: '0 15 * * *' \n\njobs:\n\n analyze:\n name: Analyze\n \n runs-on: ubuntu-latest\n\n permissions:\n actions: read\n contents: read\n security-events: write\n\n steps:\n - name: Checkout repository\n uses: actions/checkout@v2\n with:\n fetch-depth: 2\n\n - uses: dbeaver/dbeaver/.github/actions/java-codeql@devel\n
dataset_sample\yaml\sql\codeql-analysis.yml
codeql-analysis.yml
YAML
399
0.8
0
0.111111
vue-tools
708
2023-11-07T15:41:28.262323
Apache-2.0
false
eabcbfd05851f4d6767f486754598d7d
version: 2\nupdates:\n - package-ecosystem: "github-actions"\n directory: "/"\n schedule:\n interval: "weekly"\n
dataset_sample\yaml\sql\dependabot.yml
dependabot.yml
YAML
118
0.7
0
0
python-kit
461
2024-05-11T11:46:32.545588
Apache-2.0
false
4334132ba6bcd78670bf574b6b4236f4
# Prometheus configuration for cockroach clusters.\n# Requires prometheus 2.X\n#\n# Run with:\n# $ prometheus -config.file=prometheus.yml\nglobal:\n scrape_interval: 10s\n evaluation_interval: 10s\n\nrule_files:\n- "rules/alerts.rules.yml"\n- "rules/aggregation.rules.yml"\n\n# Alert manager running on the same host:\nalerting:\n alertmanagers:\n - path_prefix: "/alertmanager/"\n static_configs:\n - targets:\n - localhost:9093\n\nscrape_configs:\n - job_name: 'cockroachdb'\n metrics_path: '/_status/vars'\n # Insecure mode:\n scheme: 'http'\n # Secure mode:\n # scheme: 'https'\n tls_config:\n insecure_skip_verify: true\n\n static_configs:\n - targets: ['localhost:8080']\n labels:\n cluster: 'my-cockroachdb-cluster'\n
dataset_sample\yaml\sql\prometheus.yml
prometheus.yml
YAML
746
0.8
0.028571
0.290323
vue-tools
536
2024-02-10T15:00:30.788564
GPL-3.0
false
60aa0cfb3a5073bfffe4c0c08fbc72ef
---\n# Include Salsa-CI as a base\ninclude:\n - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml\n - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml\n\n# Override Salsa-CI with MariaDB specific variations\nvariables:\n BUILT_PACKAGES: "libmariadb-dev libmariadb-dev-compat libmariadb3\n libmariadbd19t64 libmariadbd-dev mariadb-common mariadb-client-core\n mariadb-client mariadb-server-core mariadb-server mariadb-backup\n mariadb-plugin-connect mariadb-plugin-s3 mariadb-plugin-rocksdb\n mariadb-plugin-oqgraph mariadb-plugin-mroonga mariadb-plugin-spider\n mariadb-plugin-gssapi-server mariadb-plugin-gssapi-client\n mariadb-plugin-cracklib-password-check mariadb-plugin-hashicorp-key-management\n mariadb-plugin-provider-bzip2 mariadb-plugin-provider-lz4\n mariadb-plugin-provider-lzma mariadb-plugin-provider-lzo\n mariadb-plugin-provider-snappy mariadb-test mariadb-test-data"\n DEB_BUILD_OPTIONS: "nocheck noautodbgsym"\n RELEASE: sid\n # Reprotest works, but takes very long time and often fails due to timeouts.\n # Thus is best kept disabled and only occasionally manually enabled to\n # test that reproducibility works, along with atomic reprotest to directly\n # pinpoint what aspect of the build is broken if not reproducible.\n SALSA_CI_DISABLE_REPROTEST: 1\n SALSA_CI_ENABLE_ATOMIC_REPROTEST: 0\n SALSA_CI_DISABLE_MISSING_BREAKS: 0\n SALSA_CI_DISABLE_RC_BUGS: 1\n SALSA_CI_DISABLE_BUILD_PACKAGE_ALL: 1\n SALSA_CI_DISABLE_BUILD_PACKAGE_ANY: 1\n GIT_SUBMODULE_STRATEGY: recursive\n SALSA_CI_GBP_BUILDPACKAGE_ARGS: "--git-submodules" # did not apply to extract-sources\n\n# Extend Salsa-CI build jobs to have longer timeout as the default GitLab\n# timeout (1h) is often not enough\n.build-package:\n timeout: 3h\n\nstages:\n - provisioning\n - build\n - test\n - upgrade MariaDB\n - upgrade MariaDB and distro\n - upgrade MariaDB variant\n - test extras\n - publish # Stage referenced by Salsa-CI template aptly stanza, so must exist even though not used\n\n\nbuild autobake:\n extends: .build-package\n stage: build\n script: &autobake-deb-steps\n # Run Salsa-CI .build-before-script equivalent\n - mkdir -p ${WORKING_DIR} ${CCACHE_WORK_DIR}\n - mv ${CCACHE_WORK_DIR} ${CCACHE_TMP_DIR}\n # Run Salsa-CI .build-script equivalent, with extra devscripts so autobake-deb.sh can run 'dch'\n - export CCACHE_DIR=${CCACHE_TMP_DIR}\n - apt-get update && eatmydata apt-get install --no-install-recommends -y ccache fakeroot build-essential devscripts lsb-release\n - cd ${WORKING_DIR}/${SOURCE_DIR}\n - eatmydata apt-get build-dep --no-install-recommends -y .\n - update-ccache-symlinks; ccache -z # Zero out ccache counters\n - while true; do sleep 600; echo "10 minutes passed" >&2; done & # Progress keeper since build is long and silent\n - debian/autobake-deb.sh |& tail -n 10000 # Keep Gitlab-CI output under 4 MB\n - cd ${WORKING_DIR}\n - rm -rf ${WORKING_DIR}/${SOURCE_DIR}\n - du -shc ${WORKING_DIR}/* # Show total file size of artifacts. Must stay are under 100 MB.\n - ccache -s # Show ccache stats to validate it worked\n - mv ${CCACHE_TMP_DIR} ${CCACHE_WORK_DIR}\n\n# Buster only has libfmt 6.1 but 7.0 is required, so backport build for Buster\n# is not possible unless somebody packages libfmt7-dev for Buster.\n\nautopkgtest:\n extends: .test-autopkgtest\n artifacts:\n reports:\n junit: ${WORKING_DIR}/debci/artifacts/mysql-test-run-junit.xml\n\npiuparts:\n stage: test extras\n\nblhc:\n stage: test extras\n\n# In addition to Salsa-CI, also run these fully MariaDB specific build jobs\n\n# Define snippets used to construct jobs\n\n.test-prepare-container: &test-prepare-container |\n cd ${WORKING_DIR} # Don't repeat this step, it's just cd ./debian/output\n # Enable automatic restarts from maint scripts\n sed -i "s/101/0/g" -i /usr/sbin/policy-rc.d\n # Fake /sbin/runlevel to avoid warnings of "invoke-rc.d: could not determine current runlevel"\n echo -e '#!/bin/sh\necho "N 5"' > /sbin/runlevel; chmod +x /sbin/runlevel\n # Avoid the warnings of "debconf: unable to initialize frontend: Dialog"\n echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections\n # Emit non-zero exit code also on warnings\n echo 'APT::Update::Error-Mode "any";' > /etc/apt/apt.conf.d/non-zero-exit-on-warnings\n # Prime the apt cache so later apt commands can run\n apt-get update -qq\n\n# Readline was removed from Debian Sid (and Bullseye) in Feb 2021. To be able to install older\n# versions of MariaDB that depend on it, fetch and install it from Buster.\n.test-install-readline-in-sid-for-backwards-compat: &test-install-readline-in-sid-for-backwards-compat |\n curl -sS -O https://snapshot.debian.org/archive/debian/20190316T031117Z/pool/main/r/readline5/libreadline5_5.2%2Bdfsg-3%2Bb13_amd64.deb\n apt-get -qq install --no-install-recommends --yes ./libreadline5_5.2%2Bdfsg-3%2Bb13_amd64.deb\n\n# OpenSSL 1.1 was Debian Sid in Dec 2022 (as Bookworm will ship with OpenSSL 3.0\n# only). To be able to install versions of MariaDB that depend on OpenSSL 1.1,\n# fetch and install it manually.\n.test-install-openssl1-in-sid-for-backwards-compat: &test-install-openssl1-in-sid-for-backwards-compat |\n curl -sS -O https://snapshot.debian.org/archive/debian/20220507T034236Z/pool/main/o/openssl/libssl1.1_1.1.1o-1_amd64.deb\n apt-get -qq install --no-install-recommends --yes ./libssl1.1_1.1.1o-1_amd64.deb\n\n# Package libaio1 was replaced by libaio1t64 in Debian Sid in April 2024. To\n# continue installing old MariaDB versions that depend on libaio1, use libaio1\n# from snapshots.\n.test-install-libaio-in-sid-for-backwards-compat: &test-install-libaio-in-sid-for-backwards-compat |\n curl -sS -O https://snapshot.debian.org/archive/debian/20240331T210805Z/pool/main/liba/libaio/libaio1_0.3.113-5_amd64.deb\n apt-get -qq install --no-install-recommends --yes ./libaio1_0.3.113-5_amd64.deb\n\n.test-verify-initial: &test-verify-initial |\n dpkg -l | grep -iE 'maria|mysql|galera' || true # List installed\n # MariaDB until 10.5 only had 'mysql', and since only 'mariadb', so try both\n service mysql status || service mariadb status\n mysql --skip-column-names -e "select @@version, @@version_comment" # Show version\n mysql --table -e "SHOW DATABASES;" # List databases before upgrade\n mysql --table -e "SELECT host,user,plugin,authentication_string FROM user;" mysql\n mysql --table -e "SELECT * FROM plugin;" mysql\n mysql --table -e "SHOW PLUGINS;" mysql\n\n.test-enable-sid-repos: &test-enable-sid-repos\n # Replace any old repos with just Sid\n - echo 'deb http://deb.debian.org/debian sid main' > /etc/apt/sources.list\n # Upgrade minimal stack first\n - apt-get update -qq\n # Complete upgrade of minimal stack\n - apt-get install -qq --yes apt || export APT_STATUS="failed"\n # Due to https://bugs.debian.org/993755 and #975077 upgrades from Buster or\n # older to Bookworm or newer fails on:\n # /usr/bin/perl: error while loading shared libraries: libcrypt.so.1: cannot\n # open shared object file: No such file or directory\n # dpkg: error processing package libc6:amd64 (--configure):\n # Therefore, run this extra workaround if first run of apt-get install failed:\n - |\n if [ "$APT_STATUS" = "failed" ]\n then\n cd $(mktemp -d) # Use temp dir where apt can download and unpack files\n apt-get -y download libcrypt1\n dpkg-deb -x libcrypt1_*.deb .\n cp -ra usr/lib/* /lib/ || true # libcrypt 1:4.4.36-3+\n cd - # Back to /builds/$USER/mariadb-server/debian/output\n find /lib/*/libcrypt.* -ls # Show that new libcrypt is there\n apt-get -qq --yes --fix-broken install\n apt-get install -qq --yes apt\n fi\n\n.test-enable-artifacts-repo: &test-enable-artifacts-repo |\n apt-get install -qq --yes apt-utils\n apt-ftparchive packages . > Packages\n echo "deb [trusted=yes] file:$(pwd) ./" > /etc/apt/sources.list.d/mariadb-local.list\n apt-get update -qq\n\n.test-install-all: &test-install-all\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate ${BUILT_PACKAGES}\n - apt-get install -qq --yes ${BUILT_PACKAGES}\n # Verify installation of MariaDB built in this commit\n - mariadb --version\n - dpkg -l | grep -iE 'maria|mysql|galera'\n - find /etc -name '*mariadb*' -ls -or -name '*mysql*' -ls | sort -k 11\n # Purge old versions if they exist\n - apt-get purge --yes mariadb*10.?\n - find /etc -name '*mariadb*' -ls -or -name '*mysql*' -ls | sort -k 11\n\n.test-full-upgrade: &test-full-upgrade\n - *test-enable-artifacts-repo\n - apt-get full-upgrade -qq --simulate\n - apt-get full-upgrade -qq --yes\n # Verify installation of MariaDB built in this commit\n - mariadb --version\n - dpkg -l | grep -iE 'maria|mysql|galera'\n - find /etc -name '*mariadb*' -ls -or -name '*mysql*' -ls | sort -k 11\n # Purge old versions if they exist\n - apt-get purge --yes mariadb*10.?\n - find /etc -name '*mariadb*' -ls -or -name '*mysql*' -ls | sort -k 11\n # Purging the old server might stop the running server, so restart it just in case\n - service mariadb restart\n\n.test-install-all-libs: &test-install-all-libs\n - *test-enable-artifacts-repo\n - apt-get install -yq --no-install-recommends libmariadb-dev-compat libmariadbd-dev\n # Installs 31 packages, including:\n # libmariadb3 libmariadb-dev libmariadb-dev-compat libmariadbd19t64 libmariadbd-dev\n\n.test-full-upgrade-libs: &test-full-upgrade-libs\n - *test-enable-artifacts-repo\n - apt-get full-upgrade -y\n - dpkg -l | grep -iE 'maria|mysql|galera'\n # library tests don't have the mariadb client nor server, so don't check them\n\n.test-verify-final: &test-verify-final |\n dpkg -l | grep -e "mariadb-server.*10\.11"\n mkdir -p debug # Ensure dir exists before using it\n find /var/lib/mysql -ls > debug/var-lib-mysql.list || true # Ignore errors about "no such file or directory"\n cp -ra /etc/mysql debug/etc-mysql\n mariadb --skip-column-names -e "select @@version, @@version_comment" # Show version\n mariadb --table -e "SHOW DATABASES;" # List databases\n mariadb --table -e "SELECT host,user,plugin,authentication_string FROM user;" mysql\n mariadb --table -e "SELECT * FROM plugin;" mysql\n mariadb --table -e "SHOW PLUGINS;" mysql\n # Test that InnoDB works and that command 'mysql' is also still usable\n mysql -e "CREATE DATABASE test; USE test; CREATE TABLE t(a INT PRIMARY KEY) ENGINE=INNODB; INSERT INTO t VALUEs (1); SELECT * FROM t; DROP TABLE t; DROP DATABASE test;"\n\n.test-verify-libs: &test-verify-libs\n # Don't use a collapsed command as Gitlab-CI would hide each command from the output\n - ldconfig -p | grep -e mariadb -e mysql\n - pkg-config --list-all\n - pkg-config --cflags --libs mysqlclient\n - pkg-config --cflags --libs libmariadb\n - pkg-config --cflags --libs mariadb\n - apt-get install -qq --yes --no-install-recommends g++\n - |\n # Build a test binary that depends on libmysqlclient\n cat > b933063.cpp <<EOF\n #include <iostream>\n #include <mysql/mysql.h>\n #include <stdexcept>\n int main()\n {\n MYSQL h;\n if (!mysql_init(&h)\n || mysql_options(&h, MYSQL_READ_DEFAULT_GROUP, "")\n // || mysql_options(&h, MYSQL_SET_CHARSET_NAME, "utf8mb4")\n || !mysql_real_connect(&h, "", "", NULL, "", 0, NULL, 0))\n throw std::runtime_error(mysql_error(&h));\n std::string q = "show variables like '%char%'";\n if (mysql_real_query(&h, q.data(), q.size()))\n throw std::runtime_error(mysql_error(&h));\n MYSQL_RES* result = mysql_store_result(&h);\n if (!result && mysql_errno(&h))\n throw std::runtime_error(mysql_error(&h));\n while (MYSQL_ROW row = mysql_fetch_row(result))\n {\n std::cout << row[0] << ": " << row[1] << "\n";\n }\n return 0;\n }\n EOF\n apt-get install -qq --yes --allow-downgrades ./*.deb # Server must be installed for client to connect\n echo "Testing -l mysqlclient"\n g++ b933063.cpp -l mysqlclient && ./a.out | tee result\n if grep --quiet latin result; then echo "ERROR: Charset latin found!"; exit 1; fi\n echo "Testing -l mariadbclient"\n g++ b933063.cpp -l mariadbclient && ./a.out | tee result\n if grep --quiet latin result; then echo "ERROR: Charset latin found!"; exit 1; fi\n - |\n # Build a test binary to verify API version strings\n cat > b1031863.cpp <<EOF\n #include <cstring>\n #include <iostream>\n #include <mysql/mysql.h>\n using namespace std;\n\n void test_if_starts_with(const string expected, const string tested, const string name) {\n int r = strncmp(tested.c_str(), expected.c_str(), expected.size());\n if (r == 0) {\n cout << name << ": " << tested << "\n";\n } else {\n cout << "ERROR: " << name << " started with " << tested << " instead of the expected " << expected << "!\n";\n exit(1);\n }\n }\n\n int main()\n {\n MYSQL h;\n // Constants refer to server version\n test_if_starts_with("1011", to_string(MARIADB_VERSION_ID), "MARIADB_VERSION_ID");\n test_if_starts_with("1011", to_string(MYSQL_VERSION_ID), "MYSQL_VERSION_ID");\n // Client ABI returns connector version\n test_if_starts_with("303", to_string(mysql_get_client_version()), "mysql_get_client_version()");\n test_if_starts_with("3.3", mysql_get_client_info(), "mysql_get_client_info()");\n return 0;\n }\n EOF\n g++ b1031863.cpp -l mysqlclient && ./a.out\n\n\n.salsa-ci-template-for-mariadb:\n stage: test\n needs:\n - job: build\n image: debian:${RELEASE}\n artifacts:\n when: always\n name: "$CI_BUILD_NAME"\n paths:\n - ${WORKING_DIR}/debug\n script:\n - echo "This script section must be overridden in each test" && exit 1\n variables:\n GIT_STRATEGY: none\n except:\n variables:\n - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/\n\n.salsa-ci-template-for-mariadb-upgrade:\n stage: test\n needs:\n - job: build\n image: debian:${RELEASE}\n artifacts:\n when: always\n name: "$CI_BUILD_NAME"\n paths:\n - ${WORKING_DIR}/debug\n before_script:\n - *test-prepare-container\n - apt-get install -qq --yes --no-install-recommends ca-certificates curl\n - |\n [[ -d /etc/apt/keyrings ]] || mkdir /etc/apt/keyrings\n curl -sS https://mariadb.org/mariadb_release_signing_key.pgp -o /etc/apt/keyrings/mariadb-keyring.pgp\n cat >/etc/apt/sources.list.d/mariadb.sources <<EOF\n X-Repolib-Name: MariaDB\n Types: deb\n URIs: https://archive.mariadb.org/mariadb-${MARIADB_VERSION}/repo/debian\n Suites: ${RELEASE}\n Components: main\n Signed-By: /etc/apt/keyrings/mariadb-keyring.pgp\n EOF\n - apt-get update -qq\n script:\n - echo "This script section must be overridden in each test" && exit 1\n variables:\n GIT_STRATEGY: none\n MARIADB_VERSION: "10.0"\n except:\n variables:\n - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/\n\nfresh install:\n extends: .salsa-ci-template-for-mariadb\n script:\n - *test-prepare-container\n - *test-install-all\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nsimple upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB\n script:\n - *test-prepare-container\n - apt-get install -qq --yes 'default-mysql*' ${BUILT_PACKAGES}\n - *test-full-upgrade\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb and Bookworm upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bookworm\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Debian Bookworm\n - apt-get install -qq --yes 'default-mysql*' 'mariadb-*' 'libmariadb*'\n # Verify installation of MariaDB from Bookworm\n - dpkg -l | grep -e "mariadb-server.*10\.11"\n - *test-verify-initial\n - *test-enable-sid-repos\n # Ensure mariadbd will not crash on next shutdown for any reason\n - service mariadb restart\n - *test-full-upgrade\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb-10.6 and Bookworm-20230208 upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bookworm-20230208\n script:\n - *test-prepare-container\n - |\n echo 'deb [check-valid-until=no] http://snapshot.debian.org/archive/debian/20230208T130000Z bookworm main' > /etc/apt/sources.list.d/bookworm.list\n rm /etc/apt/sources.list.d/debian.sources\n apt-get update -qq\n # In February 2023 Bookworm snapshot this will install MariaDB 10.6\n - apt-get install -qq --yes mariadb-server\n # Verify installation of MariaDB from (February 2023) Bookworm\n - dpkg -l | grep -e "mariadb-server.*10\.6"\n - *test-verify-initial\n - *test-enable-sid-repos\n # Ensure mariadbd will not crash on next shutdown for any reason\n - service mariadb restart\n - *test-full-upgrade\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - apt-get purge --yes mariadb*10.?\n - *test-verify-final\n\nmariadb-10.6 and Jammy upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: ubuntu:jammy\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Ubuntu Jammy\n - apt-get install -qq --yes 'mariadb-*' 'libmariadb*'\n # Verify installation of MariaDB from Jammy\n - dpkg -l | grep -e "mariadb-server.*10\.6"\n - *test-verify-initial\n # Install Debian Sid signing keys as Ubuntu does not have them by default\n - apt-get install -qq --yes --no-install-recommends curl\n - curl -sSLO http://deb.debian.org/debian/pool/main/d/debian-archive-keyring/debian-archive-keyring_2023.4_all.deb\n - apt-get install -qq --yes ./debian-archive-keyring_*\n - *test-enable-sid-repos\n # Ensure mariadbd will not crash on next shutdown for any reason\n - service mariadb restart\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate mariadb-server\n - apt-get install -qq --yes mariadb-server\n # Due to usrmerge, full-upgrade from Jammy to Trixie or newer cannot work\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - apt-get purge --yes mariadb*10.?\n - *test-verify-final\n\nmariadb-10.5 and Bullseye upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bullseye\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Debian Bullseye\n - apt-get install -qq --yes 'default-mysql*' 'mariadb-*' 'libmariadb*'\n # Verify installation of MariaDB from Bullseye\n - dpkg -l | grep -e "mariadb-server.*10\.5"\n - *test-verify-initial\n - *test-enable-sid-repos\n # Ensure mariadbd will not crash on next shutdown for any reason\n - service mariadb restart\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate mariadb-server\n - apt-get install -qq --yes mariadb-server\n # Due to usrmerge, full-upgrade from Bullseye to Trixie or newer cannot work\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - apt-get purge --yes mariadb*10.?\n - *test-verify-final\n\nmariadb-10.3 and Buster upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:buster\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Debian Buster\n - apt-get install -qq --yes 'default-mysql*' 'mariadb-*' 'libmariadb*'\n # Verify installation of MariaDB from Buster\n - dpkg -l | grep -e "mariadb-server.*10\.3"\n - *test-verify-initial\n - *test-enable-sid-repos\n # Ensure mariadbd will not crash on next shutdown for any reason\n - service mysql restart # in 10.3 service name is still 'mysql'\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate mariadb-server\n - apt-get install -qq --yes mariadb-server\n # Due to usrmerge, full-upgrade from Bullseye to Trixie or newer cannot work\n - service mysql status\n # mariadb-10.3 in Buster ships a /etc/init.d/mysql and it continues to exist\n # after upgrade, and is removed only on purge\n - apt-get purge --yes mariadb*10.?\n - service mariadb status\n # Give the mariadb-upgrade plenty of time to complete, otherwise next commands\n # fail on non-existing mariadb.sys user\n - sleep 15\n - *test-verify-final\n\nmariadb-10.3 and Focal upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: ubuntu:focal\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Ubuntu Focal\n - apt-get install -qq --yes 'mariadb-*' 'libmariadb*'\n # Verify installation of MariaDB from Focal\n - dpkg -l | grep -e "mariadb-server.*10\.3"\n - *test-verify-initial\n # Install Debian Sid signing keys as Ubuntu does not have them by default\n - apt-get install -qq --yes --no-install-recommends curl\n - curl -sSLO http://deb.debian.org/debian/pool/main/d/debian-archive-keyring/debian-archive-keyring_2023.4_all.deb\n - apt-get install -qq --yes ./debian-archive-keyring_*\n - *test-enable-sid-repos\n # Ensure mariadbd will not crash on next shutdown for any reason\n - service mysql restart # in 10.3 service name is still 'mysql'\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate mariadb-server\n - apt-get install -qq --yes mariadb-server\n # Due to usrmerge, full-upgrade from Focal to Trixie or newer cannot work\n - service mysql status\n # mariadb-10.3 in Focal ships a /etc/init.d/mysql and it continues to exist\n # after upgrade, and is removed only on purge\n - apt-get purge --yes mariadb*10.?\n # Give the mariadb-upgrade plenty of time to complete, otherwise next commands\n # fail on non-existing mariadb.sys user\n - sleep 15\n - *test-verify-final\n\n# Similar to the Cacti install test, check that MariaDB consumer Zoph upgrades\ndefault-mysql-server and Bookworm upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bookworm\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Debian Bookworm\n - apt-get install -qq --yes default-mysql-server zoph\n # Verify installation of MariaDB from Bookworm\n - dpkg -l | grep -e "mariadb-server.*10\.11"\n - *test-verify-initial\n - *test-enable-sid-repos\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate default-mysql-server\n - apt-get install -qq --yes default-mysql-server\n - *test-full-upgrade\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\n# Similar to the Cacti install test, check that MariaDB consumer Zoph upgrades\ndefault-mysql-server and Bullseye upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bullseye\n script:\n - *test-prepare-container\n # Install everything MariaDB currently in Debian Bullseye\n - apt-get install -qq --yes default-mysql-server zoph\n # Verify installation of MariaDB from Bullseye\n - dpkg -l | grep -e "mariadb-server.*10\.5"\n - *test-verify-initial\n - *test-enable-sid-repos\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate default-mysql-server\n - apt-get install -qq --yes default-mysql-server\n # Due to usrmerge, full-upgrade from Bullseye to Trixie or newer cannot work\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\ntest basic features:\n extends: .salsa-ci-template-for-mariadb\n script:\n - *test-prepare-container\n - *test-install-all\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n - |\n # Print info about server\n mariadb --skip-column-names -e "select @@version, @@version_comment"\n mariadb --skip-column-names -e "select engine, support, transactions, savepoints from information_schema.engines order by engine" | sort\n mariadb --skip-column-names -e "select plugin_name, plugin_status, plugin_type, plugin_library, plugin_license from information_schema.all_plugins order by plugin_name, plugin_library"\n # Test various features\n mariadb -e "CREATE DATABASE db"\n mariadb -e "CREATE TABLE db.t_innodb(a1 SERIAL, c1 CHAR(8)) ENGINE=InnoDB; INSERT INTO db.t_innodb VALUES (1,'"'"'foo'"'"'),(2,'"'"'bar'"'"')"\n mariadb -e "CREATE TABLE db.t_myisam(a2 SERIAL, c2 CHAR(8)) ENGINE=MyISAM; INSERT INTO db.t_myisam VALUES (1,'"'"'foo'"'"'),(2,'"'"'bar'"'"')"\n mariadb -e "CREATE TABLE db.t_aria(a3 SERIAL, c3 CHAR(8)) ENGINE=Aria; INSERT INTO db.t_aria VALUES (1,'"'"'foo'"'"'),(2,'"'"'bar'"'"')"\n mariadb -e "CREATE TABLE db.t_memory(a4 SERIAL, c4 CHAR(8)) ENGINE=MEMORY; INSERT INTO db.t_memory VALUES (1,'"'"'foo'"'"'),(2,'"'"'bar'"'"')"\n mariadb -e "CREATE ALGORITHM=MERGE VIEW db.v_merge AS SELECT * FROM db.t_innodb, db.t_myisam, db.t_aria"\n mariadb -e "CREATE ALGORITHM=TEMPTABLE VIEW db.v_temptable AS SELECT * FROM db.t_innodb, db.t_myisam, db.t_aria"\n mariadb -e "CREATE PROCEDURE db.p() SELECT * FROM db.v_merge"\n mariadb -e "CREATE FUNCTION db.f() RETURNS INT DETERMINISTIC RETURN 1"\n # Test that the features still work (this step can be done e.g. after an upgrade)\n mariadb -e "SHOW TABLES IN db"\n mariadb -e "SELECT * FROM db.t_innodb; INSERT INTO db.t_innodb VALUES (3,'"'"'foo'"'"'),(4,'"'"'bar'"'"')"\n mariadb -e "SELECT * FROM db.t_myisam; INSERT INTO db.t_myisam VALUES (3,'"'"'foo'"'"'),(4,'"'"'bar'"'"')"\n mariadb -e "SELECT * FROM db.t_aria; INSERT INTO db.t_aria VALUES (3,'"'"'foo'"'"'),(4,'"'"'bar'"'"')"\n mariadb -e "SELECT * FROM db.t_memory; INSERT INTO db.t_memory VALUES (3,'"'"'foo'"'"'),(4,'"'"'bar'"'"')"\n mariadb -e "SELECT COUNT(*) FROM db.v_merge"\n mariadb -e "SELECT COUNT(*) FROM db.v_temptable"\n mariadb -e "CALL db.p()"\n mariadb -e "SELECT db.f()"\n - |\n # Test TLS connections\n dpkg -l | grep -i -e tls -e ssl\n # Create user for TCP connection, must have password\n mariadb -e "SET PASSWORD FOR 'mysql'@'localhost' = PASSWORD('asdf234');"\n cat <<EOF > /root/.my.cnf\n [client]\n user=mysql\n password=asdf234\n protocol=tcp\n EOF\n export CERT_PATH=/usr/share/mariadb/mariadb-test/std_data\n openssl verify -CAfile $CERT_PATH/cacert.pem $CERT_PATH/server-cert.pem\n openssl x509 -subject -issuer -noout -in $CERT_PATH/cacert.pem\n openssl x509 -subject -issuer -noout -in $CERT_PATH/server-cert.pem\n cat <<EOF > /etc/mysql/mariadb.conf.d/tls.cnf\n [client-server]\n ssl = on\n ssl-ca = $CERT_PATH/cacert.pem\n ssl-cert = $CERT_PATH/server-cert.pem\n ssl-key = $CERT_PATH/server-key.pem\n [server]\n require-secure-transport = on\n [client]\n ssl-verify-server-cert = on\n EOF\n service mariadb restart\n mariadb -Bse 'STATUS' | tee result\n # Ensure important values present, otherwise fail job\n grep --quiet "localhost via TCP/IP" result\n mariadb -Bse 'SHOW VARIABLES' | grep -e tls -e ssl | tee result\n grep --quiet "have_ssl YES" result\n grep --quiet TLSv1.3 result\n mariadb -Bse 'SHOW SESSION STATUS' | grep -i -e tls -e ssl | tee result\n grep --quiet TLSv1.3 result\n\n# Install Cacti, which in uses dbconfig-common to configure the MariaDB user and\n# connection automatically in order to validate that at least one downstream\n# server consumer continues to work.\ntest consumer cacti:\n extends: .salsa-ci-template-for-mariadb\n script:\n - *test-prepare-container\n - *test-enable-artifacts-repo\n - apt-get install -qq --yes cacti\n - mariadb -E -e "SHOW CREATE TABLE version;" cacti\n\n# Build a piece of software that was designed for libmysqlclient-dev but using the\n# libmariadb-dev-compat layer. Should always end up using libmariadb.so.3 run-time.\nbuild mariadbclient consumer Python-MySQLdb:\n extends: .salsa-ci-template-for-mariadb\n script:\n - *test-prepare-container\n - *test-install-all-libs\n - apt-get install -qq --yes pkg-config python3-pip\n # See what MySQLdb will build with\n - pkg-config --cflags --libs mysqlclient\n # MySQLdb is also available in Debian as package python3-mysqldb, but\n # install it from pip to force that the client is compiled with\n # libmariadb-dev-compat on-the-fly.\n # Python 3.11 needs `--break-system-packages` to proceed with this.\n - pip3 install --break-system-packages mysqlclient # Compiles module against libmysqlclient\n - apt-get purge --yes libmariadb-dev # Not needed for run-time\n - python3 -c "import MySQLdb; print(MySQLdb.get_client_info())"\n\nlibmysql* to libmariadb* upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB\n script:\n - *test-prepare-container\n # Install all libmysql* available in Debian unstable\n - apt-get install -qq --yes pkg-config libmysqlclient-dev\n - pkg-config --list-all\n - pkg-config --cflags mysqlclient # mysqlclient.pc from original package\n - *test-enable-artifacts-repo\n - apt-get install -qq --yes libmariadb3\n - pkg-config --list-all\n - apt-get install -qq --yes libmariadb-dev\n - pkg-config --list-all\n - apt-get install -qq --yes libmariadb-dev-compat\n - pkg-config --cflags mysqlclient # mysqlclient.pc from compat package\n - pkg-config --list-all\n - apt-get install -qq --yes libmariadbd19t64\n - pkg-config --list-all\n - apt-get install -qq --yes libmariadbd-dev\n - pkg-config --list-all\n - apt-get install -qq --yes default-libmysqlclient-dev default-libmysqld-dev\n - *test-verify-libs\n\ndefault-libmysqlclient-dev upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB\n script:\n - *test-prepare-container\n - apt-get install -qq --yes pkg-config default-libmysqlclient-dev default-libmysqld-dev\n - pkg-config --list-all\n - *test-full-upgrade-libs\n - *test-verify-libs\n\ndefault-libmysqlclient-dev and Bookworm upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bookworm\n script:\n - *test-prepare-container\n - apt-get install -qq --yes pkg-config default-libmysqlclient-dev\n - pkg-config --list-all\n - *test-enable-sid-repos\n - *test-full-upgrade-libs\n - *test-verify-libs\n\ndefault-libmysqlclient-dev and Bullseye upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB and distro\n image: debian:bullseye\n script:\n - *test-prepare-container\n - apt-get install -qq --yes pkg-config default-libmysqlclient-dev\n - pkg-config --list-all\n - *test-enable-sid-repos\n # Due to usrmerge, full-upgrade from Bullseye to Trixie or newer cannot work\n - *test-install-all-libs\n - *test-verify-libs\n\n# No longer possible since as it pulls as dependencies packages that trigger\n# usrmerge, which cannot run in a container\n#default-libmysqlclient-dev and Buster upgrade:\n\n# Upgrading from MySQL 8.0 with datadir in place is not possible. Users need to do a data dump.\n# The Debian maintainer scripts detect this situation and simply moves old datadir aside and start fresh.\nmysql-8.0 in Sid upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB variant\n image: debian:sid\n script:\n - *test-prepare-container\n # The postinst fails often if 'ps' is missing from system, so install procps\n - apt-get install -qq --yes 'mysql*' libmysqlcppconn7t64\n # Ensure MySQL 8.0 package actually got installed\n - dpkg -l | grep -e "mysql-server.*8\.0"\n - *test-verify-initial\n - *test-install-all\n # Due to some (currently unknown) changes in MySQL 8.0 packaging or apt\n # behaviour changes, a system with a previous installation of MySQL 8.0 will\n # on upgrades to MariaDB first fully remove MySQL, including the\n # /etc/init.d/mysql file, so previous techniques in\n # mariadb-server-10.6.postinst to maintain backwards compatibility with\n # 'service mysql status' after installing MariaDB on top MySQL no longer\n # works. Thus the step to test it now intentionally has a fallback to use\n # the service name 'mariadb' instead, and the fallback is always used.\n - sleep 5 # Give the mysql_upgrade a bit of time to complete before querying the server\n - service mysql status || service mariadb status\n - *test-verify-final\n\n# Upgrading from MySQL 8.0 with datadir in place is not possible. Users need to do a data dump.\n# The Debian maintainer scripts detect this situation and simply moves old datadir aside and start fresh.\nmysql-8.0 in Ubuntu 23.10 upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB variant\n image: ubuntu:mantic\n script:\n - *test-prepare-container\n - apt-get install -qq --yes procps mysql-server 'libmysqlc*'\n # Ensure MySQL 8.0 package actually got installed\n - dpkg -l | grep mysql\n - service mysql status\n - *test-verify-initial\n # Install Debian Sid signing keys as Ubuntu does not have them by default\n - apt-get install -qq --yes --no-install-recommends curl\n - curl -sSLO http://deb.debian.org/debian/pool/main/d/debian-archive-keyring/debian-archive-keyring_2023.4_all.deb\n - apt-get install -qq --yes ./debian-archive-keyring_*\n - *test-enable-sid-repos\n # Ensure mysqld will not crash on next shutdown for any reason\n - service mysql restart\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate mariadb-server\n - apt-get install -qq --yes mariadb-server\n # Due to usrmerge, full-upgrade from Mantic to Trixie or newer may not work\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n # Remove everything MySQL except mysql-common which also MariaDB depends on\n - apt-get purge --yes mysql-s* mysql-cl* libmysql*\n - *test-verify-final\n\n# Upgrading from MySQL 8.0 with datadir in place is not possible. Users need to do a data dump.\n# The Debian maintainer scripts detect this situation and simply moves old datadir aside and start fresh.\nmysql-community-cluster-8.0 from MySQL.com with Bookworm upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB variant\n image: debian:bookworm\n script:\n - *test-prepare-container\n - |\n apt-get install -qq --yes --no-install-recommends ca-certificates curl systemctl\n curl -sS "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xbca43417c3b485dd128ec6d4b7b3b788a8d3785c" -o /etc/apt/trusted.gpg.d/mysql.asc\n echo "deb https://repo.mysql.com/apt/debian/ bookworm mysql-cluster-8.0" > /etc/apt/sources.list.d/mysql.list\n apt-get update -qq\n - apt-get install -qq --yes mysql-cluster-community-server\n - sed 's/ExecStartPre=+/ExecStartPre=/' -i /lib/systemd/system/mysql.service # Hack to make file compatible with systemctl shim\n - systemctl start mysql\n - dpkg -l | grep -iE 'maria|mysql|galera'\n - systemctl status mysql; mysql -e 'SELECT VERSION()'\n - systemctl stop mysql # Stop manually as maintainer scripts don't handle this with systemctl shim\n - *test-enable-sid-repos\n - *test-enable-artifacts-repo\n - apt-get install -qq --simulate mariadb-server\n - apt-get install -qq --yes mariadb-server\n # Ignore systemctl shim result as MariaDB systemd file is incompatible with it and yields:\n # ERROR:systemctl:the ExecStartPre control process exited with error code\n - systemctl status mysql || true\n - mysql -e 'SELECT VERSION()' || true\n - sleep 5 # Give the mysql_upgrade a bit of time to complete before querying the server\n - *test-verify-final\n\nmariadb.org-10.11 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.11"\n script:\n - apt-get install -qq --yes mariadb-server\n - *test-verify-initial\n # Install MariaDB built in this commit\n # Force downgrades so our version installs on top of upstream revision, e.g. 1:11.10.1-1 vs 1:11.10.1+mariadb~sid\n - apt-get install -qq --yes --allow-downgrades ./*.deb\n # Verify installation of MariaDB built in this commit\n - dpkg -l | grep -iE 'maria|mysql|galera' || true # List installed\n - mariadb --version # Client version\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb.org-10.10 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.10"\n script:\n # this should not use Sid to begin with\n - apt-get install -qq --yes mariadb-server=1:10.10.2+maria~debunstable mariadb-client=1:10.10.2+maria~debunstable\n - *test-verify-initial\n - *test-full-upgrade\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb.org-10.9 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.9"\n script:\n # this should not use Sid to begin with\n - apt-get install -qq --yes mariadb-server=1:10.9.4+maria~debunstable mariadb-client=1:10.9.4+maria~debunstable\n - *test-verify-initial\n - *test-full-upgrade\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb.org-10.8 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.8"\n script:\n - apt-get install -qq --yes mariadb-server-10.8\n - *test-verify-initial\n - *test-install-all\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb.org-10.7 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.7"\n script:\n - apt-get install -qq --yes mariadb-server-10.7\n - *test-verify-initial\n - *test-install-all\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\nmariadb.org-10.6 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.6"\n script:\n # Package libmariadbclient-dev from mariadb.org conflicts with libmariadb-dev in Sid, so cannot use wildcard that would include it\n # Enable this line when there is a way to install them only from the mariadb.org repo\n # - apt-get install -qq --yes 'mariadb*' libmariadb3 'libmariadb-*' 'libmariadbd*'\n - apt-get install -qq --yes mariadb-server-10.6\n - *test-verify-initial\n - *test-install-all\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\n# archive.mariadb.org for Debian Sid latest is 10.5.13\nmariadb.org-10.5 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.5"\n script:\n - *test-install-openssl1-in-sid-for-backwards-compat\n - apt-get install -qq --yes mariadb-server-10.5\n - *test-verify-initial\n - *test-install-all\n - service mariadb status # There is no init.d/mysql in MariaDB 10.5+\n - *test-verify-final\n\n# archive.mariadb.org for Debian Sid latest is 10.4.17\nmariadb.org-10.4 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.4"\n script:\n - *test-install-readline-in-sid-for-backwards-compat\n - *test-install-openssl1-in-sid-for-backwards-compat\n - *test-install-libaio-in-sid-for-backwards-compat\n - apt-get install -qq --yes mariadb-server-10.4\n # MariaDB.org version of 10.4 and early 10.5 do not install an init file, so\n # it must be installed here manually\n - cp /usr/share/mysql/mysql.init /etc/init.d/mysql; chmod +x /etc/init.d/mysql; service mysql start; sleep 5\n - *test-verify-initial\n - *test-install-all\n - sleep 5 # Give the mysql_upgrade a bit of time to complete before querying the server\n - service mysql status\n - service mariadb status\n - *test-verify-final\n\n# archive.mariadb.org for Debian Sid latest is 10.3.27\nmariadb.org-10.3 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.3"\n script:\n - *test-install-readline-in-sid-for-backwards-compat\n - *test-install-openssl1-in-sid-for-backwards-compat\n - *test-install-libaio-in-sid-for-backwards-compat\n - apt-get install -qq --yes mariadb-server-10.3\n - *test-verify-initial\n - *test-install-all\n # mariadb-10.3 in Buster ships a /etc/init.d/mysql and it continues to exist\n # after upgrade, and is removed only on purge\n - service mysql status || service mariadb status\n # Give the mariadb-upgrade plenty of time to complete, otherwise next commands\n # fail on non-existing mariadb.sys user\n - sleep 15\n - *test-verify-final\n\n# archive.mariadb.org for Debian Sid latest is 10.2.21\nmariadb.org-10.2 upgrade:\n extends: .salsa-ci-template-for-mariadb-upgrade\n stage: upgrade MariaDB variant\n variables:\n MARIADB_VERSION: "10.2"\n script:\n - *test-install-readline-in-sid-for-backwards-compat\n - *test-install-openssl1-in-sid-for-backwards-compat\n - *test-install-libaio-in-sid-for-backwards-compat\n - apt-get install -qq --yes mariadb-server-10.2\n # Verify initial state before upgrade\n - dpkg -l | grep -iE 'maria|mysql|galera' || true # List installed\n - service mysql status\n # prepending with --defaults-file=/etc/mysql/debian.cnf is needed in upstream 5.5–10.3\n - |\n mysql --defaults-file=/etc/mysql/debian.cnf --skip-column-names -e "SELECT @@version, @@version_comment"\n mysql --defaults-file=/etc/mysql/debian.cnf --table -e "SHOW DATABASES;"\n mysql --defaults-file=/etc/mysql/debian.cnf --table -e "SELECT * FROM mysql.user; SHOW CREATE USER root@localhost;"\n mysql --defaults-file=/etc/mysql/debian.cnf --table -e "SELECT * FROM mysql.plugin; SHOW PLUGINS;"\n - *test-install-all\n # mariadb-10.2 in ships a /etc/init.d/mysql and it continues to exist\n # after upgrade, and is removed only on purge\n - service mysql status || service mariadb status\n # Give the mariadb-upgrade plenty of time to complete, otherwise next commands\n # fail on non-existing mariadb.sys user\n - sleep 15\n - *test-verify-final\n\n# Buster is the last Debian release Oracle MySQL 5.7 offers binaries for\nmysql.com-5.7 with Buster upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB variant\n needs:\n - job: build\n image: debian:buster\n script:\n - *test-prepare-container\n - |\n apt-get install -qq --yes --no-install-recommends gpg gpg-agent dirmngr ca-certificates # Bare minimal (<4MB) for apt-key to work\n apt-key adv --recv-keys --keyserver hkps://keyserver.ubuntu.com:443 B7B3B788A8D3785C\n echo "deb https://repo.mysql.com/apt/debian/ buster mysql-5.7" > /etc/apt/sources.list.d/mysql.list\n apt-get update -qq\n - apt-get install -qq --yes mysql-server 'libmysqlc*'\n # Ensure MySQL 5.7 package actually got installed\n - dpkg -l | grep -e "mysql-server.*5.7"\n - *test-verify-initial\n - *test-enable-sid-repos\n - *test-install-all\n # Due to some (currently unknown) changes in MySQL 5.7 packaging or apt\n # behaviour changes, a system with a previous installation of MySQL will\n # on upgrades to MariaDB first fully remove MySQL, including the\n # /etc/init.d/mysql file, so previous techniques in\n # mariadb-server-10.6.postinst to maintain backwards compatibility with\n # 'service mysql status' after installing MariaDB on top MySQL no longer\n # works. Thus the step to test it now intentionally has a fallback to use\n # the service name 'mariadb' instead, and the fallback is always used.\n - sleep 5 # Give the mysql_upgrade a bit of time to complete before querying the server\n - service mysql status || service mariadb status\n - sleep 15 # Give the mysql_upgrade a bit of extra time to complete with MySQL 5.7 before querying the server\n - *test-verify-final\n\n# Note: pmm2-client does not exist in the Bookworm repository anymore\npercona-xtradb-5.7 with Bookworm upgrade:\n extends: .salsa-ci-template-for-mariadb\n stage: upgrade MariaDB variant\n image: debian:bookworm\n script:\n - *test-prepare-container\n - |\n apt-get install -qq --yes --no-install-recommends ca-certificates curl systemctl\n curl -sS "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x9334A25F8507EFA5" -o /etc/apt/trusted.gpg.d/percona.asc\n echo "deb https://repo.percona.com/apt/ bookworm main" > /etc/apt/sources.list.d/percona.list\n apt-get update -qq\n - apt-get install -qq --yes percona-xtradb-cluster-full-57 percona-xtrabackup-24 percona-toolkit\n # Ensure Percona 5.7 package actually got installed\n - dpkg -l | grep -e "percona.*5\.7"\n - service mysql status\n - *test-verify-initial\n - *test-enable-sid-repos\n - *test-install-all\n # Percona package owned /etc/init.d/mysql, so on removal and upgrade to MariaDB old service name can't be referenced anymore\n - service mariadb status\n - sleep 15 # Give the mysql_upgrade a bit of extra time to complete with MySQL 5.7 before querying the server\n - *test-verify-final\n
dataset_sample\yaml\sql\salsa-ci.yml
salsa-ci.yml
YAML
45,331
0.95
0.083661
0.186583
react-lib
987
2024-12-21T07:59:00.034351
BSD-3-Clause
false
3ae80186c33c768f0a1c0ba715a81374
staleLabel: stale\ndaysUntilClose: 7\n\npulls:\n daysUntilStale: 180 # ~6 months\n markComment: >\n This pull request has been automatically marked as stale because it has not had\n recent activity. If you'd still like this PR merged, please comment on the task,\n make sure you've addressed reviewer comments, and rebase on the latest master.\n Thank you for your contributions!\n\nissues:\n daysUntilStale: 730 # ~2 years\n exemptLabels:\n - bug\n markComment: >\n This issue has been automatically marked as stale because it has not had\n any activity in the last 2 years. If you feel that this issue is important,\n just comment and the stale tag will be removed; otherwise it will be\n closed in 7 days. This is an attempt to ensure that our open issues remain\n valuable and relevant so that we can keep track of what needs to be done and\n prioritize the right things.\n
dataset_sample\yaml\sql\stale.yml
stale.yml
YAML
947
0.95
0.045455
0
react-lib
30
2024-08-21T16:01:46.130068
BSD-3-Clause
false
888607f934211baee9cf0c2005a24918
flywayVersion: 11.7.2\nenterpriseUrl: https://download.red-gate.com/maven/release/com/redgate/flyway\nkramdown:\n smart_quotes: ["apos", "apos", "quot", "quot"]\n typographic_symbols: { hellip: ... , mdash: --- , ndash: -- , laquo: "<<" , raquo: ">>" , laquo_space: "<< " , raquo_space: " >>" }
dataset_sample\yaml\sql\_config.yml
_config.yml
YAML
292
0.8
0
0
node-utils
167
2024-05-16T16:32:31.237894
GPL-3.0
false
5238a087e06f35b7d726a0779e7797ac
version: 2\nupdates:\n - package-ecosystem: "github-actions"\n directory: "/"\n schedule:\n interval: "weekly"\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\dependabot.yml
dependabot.yml
YAML
118
0.7
0
0
react-lib
93
2024-03-02T02:01:05.883649
MIT
false
4334132ba6bcd78670bf574b6b4236f4
blank_issues_enabled: false\ncontact_links:\n - name: GitHub Community Support\n url: https://github.com/sqlitebrowser/sqlitebrowser/discussions\n about: Please ask and answer questions here.\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
195
0.8
0
0
awesome-app
87
2024-08-11T05:41:58.920986
Apache-2.0
false
a74e67d8e3a2fada9f37103eba8f223f
name: "CodeQL"\n\non:\n push:\n branches: ["master"]\n pull_request:\n # The branches below must be a subset of the branches above\n branches: ["master"]\n schedule:\n - cron: "14 22 * * 6"\n\njobs:\n analyze:\n name: Analyze\n runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}\n timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}\n permissions:\n actions: read\n contents: read\n security-events: write\n\n strategy:\n fail-fast: false\n matrix:\n language: ["cpp", "python"]\n # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]\n # Use only 'java' to analyze code written in Java, Kotlin or both\n # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both\n # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support\n\n steps:\n - name: Checkout repository\n uses: actions/checkout@v4\n\n - if: matrix.language == 'cpp'\n name: Install dependencies\n run: |\n sudo apt-get update\n sudo apt install build-essential git cmake libsqlite3-dev qtchooser qt5-qmake qtbase5-dev-tools qttools5-dev-tools libsqlcipher-dev qtbase5-dev libqt5scintilla2-dev libqcustomplot-dev qttools5-dev\n\n # Initializes the CodeQL tools for scanning.\n - name: Initialize CodeQL\n uses: github/codeql-action/init@v3\n with:\n languages: ${{ matrix.language }}\n # If you wish to specify custom queries, you can do so here or in a config file.\n # By default, queries listed here will override any specified in a config file.\n # Prefix the list here with "+" to use these queries and those in the config file.\n\n # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs\n # queries: security-extended,security-and-quality\n\n - if: matrix.language == 'cpp'\n name: Build C++\n run: |\n mkdir build && cd build\n cmake -Dsqlcipher=1 -Wno-dev ..\n make\n sudo make install\n\n # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).\n # If this step fails, then you should remove it and run the build manually (see below)\n - if: matrix.language != 'cpp'\n name: Autobuild\n uses: github/codeql-action/autobuild@v3\n\n # ℹ️ Command-line programs to run using the OS shell.\n # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun\n\n # If the Autobuild fails above, remove it and uncomment the following three lines.\n # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.\n\n # - run: |\n # echo "Run, Build Application using script"\n # ./location_of_script_within_repo/buildscript.sh\n\n - name: Perform CodeQL Analysis\n uses: github/codeql-action/analyze@v3\n with:\n category: "/language:${{matrix.language}}"\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\workflows\codeql.yml
codeql.yml
YAML
3,253
0.8
0.1
0.298507
react-lib
79
2024-05-09T04:17:09.065623
BSD-3-Clause
false
e713dfb010260e2a8e9075e87afcf07c
# KEEP THE RUNNER OS AS LOW AS POSSIBLE.\n# If built on the latest OS, it may not run on previous OS versions.\n# Related: https://docs.appimage.org/reference/best-practices.html#binaries-compiled-on-old-enough-base-system\n\nname: Build (Ubuntu)\n\non:\n workflow_call:\n inputs:\n NIGHTLY:\n default: false\n type: boolean\n workflow_dispatch:\n\njobs:\n build:\n name: ${{ matrix.os }} (${{ matrix.bundle }})\n runs-on: ${{ matrix.os }}\n strategy:\n fail-fast: false\n matrix:\n bundle: [SQLCipher, SQLite]\n os: [ubuntu-22.04, ubuntu-22.04-arm]\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n\n - name: Install and cache dependencies\n uses: awalsh128/cache-apt-pkgs-action@v1.4.3\n with:\n packages: libfuse2 libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 ninja-build qttools5-dev\n version: ${{ matrix.os }}\n\n - if: matrix.bundle == 'SQLCipher'\n name: Build SQLCipher\n run: |\n # git clone https://github.com/sqlcipher/sqlcipher && cd sqlcipher && git checkout $(git describe --tags --abbrev=0)\n git clone https://github.com/sqlcipher/sqlcipher && cd sqlcipher && git checkout v4.6.1\n ./configure --enable-tempstore=yes --with-crypto-lib=openssl --enable-load-extension --disable-tcl CFLAGS="-DSQLCIPHER_CRYPTO_OPENSSL -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_GEOPOLY -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1 -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_SNAPSHOT=1 -DSQLITE_ENABLE_STAT4 -DSQLITE_HAS_CODEC -DSQLITE_SOUNDEX"\n make -j2 && sudo make install -j2\n\n - if: matrix.bundle == 'SQLite'\n name: Build SQLite\n run: |\n TARBALL=$(curl -s https://sqlite.org/download.html | awk '/<!--/,/-->/ {print}' | grep 'sqlite-autoconf' | cut -d ',' -f 3)\n SHA3=$(curl -s https://sqlite.org/download.html | awk '/<!--/,/-->/ {print}' | grep 'sqlite-autoconf' | cut -d ',' -f 5)\n curl -LsS -o sqlite.tar.gz https://sqlite.org/${TARBALL}\n VERIFY=$(openssl dgst -sha3-256 sqlite.tar.gz | cut -d ' ' -f 2)\n if [ "$SHA3" != "$VERIFY" ]; then\n echo "::error::SQLite tarball checksum mismatch."\n exit 1\n fi\n tar -xzf sqlite.tar.gz && cd sqlite-autoconf-*\n\n CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_MAX_VARIABLE_NUMBER=250000 -DSQLITE_ENABLE_RTREE=1 -DSQLITE_ENABLE_GEOPOLY=1 -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS5=1 -DSQLITE_ENABLE_STAT4=1 -DSQLITE_ENABLE_JSON1=1 -DSQLITE_SOUNDEX=1 -DSQLITE_ENABLE_MATH_FUNCTIONS=1 -DSQLITE_MAX_ATTACHED=125 -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1 -DSQLITE_ENABLE_SNAPSHOT=1" ./configure --disable-shared\n make -j2 && sudo make install -j2\n\n - name: Configure build\n run: |\n mkdir -v appbuild appdir && cd appbuild\n cmake -G Ninja \\n -DCMAKE_BUILD_TYPE=Release \\n -DCMAKE_INSTALL_PREFIX:PATH=../appdir/usr \\n -DENABLE_TESTING=ON \\n -DFORCE_INTERNAL_QSCINTILLA=ON \\n -Dsqlcipher=${{ matrix.bundle == 'SQLCipher' }} ..\n\n - name: Build\n working-directory: ./appbuild\n run: ninja install\n\n - name: Tests\n working-directory: ./appbuild\n run: ninja test\n\n - name: Build AppImage\n run: |\n wget -c -nv "https://github.com/linuxdeploy/linuxdeploy/releases/download/1-alpha-20240109-1/linuxdeploy-$(uname -m).AppImage"\n wget -c -nv "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/1-alpha-20240109-1/linuxdeploy-plugin-qt-$(uname -m).AppImage"\n chmod a+x "linuxdeploy-$(uname -m).AppImage" "linuxdeploy-plugin-qt-$(uname -m).AppImage"\n if [ "${{ inputs.NIGHTLY }}" = "true" ]; then\n export VERSION=$(date +%Y%m%d)\n else\n export VERSION=$(printf "dev-`git -C . rev-parse --short HEAD`")\n fi\n LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" "./linuxdeploy-$(uname -m).AppImage" --appdir=appdir --desktop-file=appdir/usr/share/applications/sqlitebrowser.desktop --plugin qt --output appimage\n\n - name: Rename a file\n run: |\n for i in DB_Browser_for_SQLite*; do mv "$i" "${i//_/.}"; done\n if [ "${{ matrix.bundle }}" = "SQLCipher" ]; then\n export FILE=$(ls DB.Browser.for.SQLite*.AppImage)\n export FILE=${FILE/SQLite/SQLCipher}\n mv -v DB.Browser.for.SQLite*.AppImage $FILE\n fi\n\n - if: github.event_name != 'pull_request' && github.workflow != 'Build (Ubuntu)'\n name: Upload artifacts\n uses: actions/upload-artifact@v4\n with:\n name: build-artifacts-${{ matrix.os }}-${{ matrix.bundle }}\n path: DB.Browser.for.*.AppImage\n retention-days: 1\n\n - if: github.event_name == 'workflow_dispatch' && github.workflow == 'Build (Ubuntu)'\n name: Release\n uses: softprops/action-gh-release@v2\n with:\n files: DB.Browser.for.*.AppImage\n prerelease: true\n tag_name: ${{ github.sha }}-ubuntu\n\n - name: Summary\n run: |\n QT_VERSION=$(qmake --version | awk '/Using Qt version/ {print $4}')\n if [ "${{ matrix.bundle }}" = "SQLCipher" ]; then\n OPENSSL_VERSION=$(openssl version | awk '{print $2}')\n SQLCIPHER_VERSION=$(/usr/local/bin/sqlcipher ":memory:" "PRAGMA cipher_version;" | awk '{print $1}')\n SQLITE_VERSION="Not applicable"\n else\n OPENSSL_VERSION="Not applicable"\n SQLCIPHER_VERSION="Not applicable"\n SQLITE_VERSION=$(/usr/local/bin/sqlite3 --version | awk '{print $1}')\n fi\n\n echo "## Libaries used" >> $GITHUB_STEP_SUMMARY\n echo "OpenSSL: $OPENSSL_VERSION, Qt: $QT_VERSION, SQLCipher: $SQLCIPHER_VERSION, SQLite: $SQLITE_VERSION" >> $GITHUB_STEP_SUMMARY\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\workflows\cppcmake-ubuntu.yml
cppcmake-ubuntu.yml
YAML
6,050
0.8
0.102362
0.036036
python-kit
980
2024-10-28T07:39:18.990490
MIT
false
2b06963cafba217a7c09b7246343fd11
name: Build (Windows)\n\non:\n workflow_call:\n inputs:\n NIGHTLY:\n default: false\n type: boolean\n workflow_dispatch:\n\njobs:\n build:\n name: ${{ matrix.os }}-${{ matrix.arch }}\n runs-on: ${{ matrix.os }}\n strategy:\n fail-fast: false\n matrix:\n arch: [x86, x64]\n os: [windows-2019]\n env:\n GH_TOKEN: ${{ github.token }}\n OPENSSL_VERSION: 1.1.1.2100\n QT_VERSION: 5.15.2\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n\n - name: Install dependencies\n run: |\n choco install --no-progress ninja\n if ("${{ matrix.arch }}" -eq "x86") {\n choco install --no-progress openssl --x86 --version=${{ env.OPENSSL_VERSION}}\n } else {\n choco install --no-progress openssl --version=${{ env.OPENSSL_VERSION}}\n }\n\n # When building SQLCipher, if we specify a path to OpenSSL and\n # there are spaces in the path, an error will occur, so to\n # avoid this, create the symlink.\n New-Item -Path C:\dev -ItemType Directory\n if ("${{ matrix.arch }}" -eq "x86") {\n New-Item -Path "C:\dev\OpenSSL" -ItemType SymbolicLink -Value "C:\Program Files (x86)\OpenSSL-Win32\"\n } else {\n New-Item -Path "C:\dev\OpenSSL" -ItemType SymbolicLink -Value "C:\Program Files\OpenSSL"\n }\n\n - name: Install Qt\n uses: jurplel/install-qt-action@v4\n with:\n arch: ${{ matrix.arch == 'x86' && 'win32_msvc2019' || matrix.arch == 'x64' && 'win64_msvc2019_64'}}\n cache: true\n cache-key-prefix: "cache"\n version: ${{ env.QT_VERSION }}\n\n - name: Setup MSVC\n uses: ilammy/msvc-dev-cmd@v1\n with:\n arch: ${{ matrix.arch == 'x86' && 'amd64_x86' || matrix.arch == 'x64' && 'amd64'}}\n\n - name: Build SQLite\n run: |\n $htmlContent = Invoke-WebRequest -Uri "https://sqlite.org/download.html" | Select-Object -ExpandProperty Content\n $regex = [regex]::new('PRODUCT,(\d+\.\d+\.\d+),(\d+/sqlite-amalgamation-\d+\.zip),\d+,(.+)')\n $match = $regex.Match($htmlContent)\n $relativeUrl = $match.Groups[2].Value\n $downloadLink = "https://sqlite.org/$relativeUrl"\n Invoke-WebRequest -Uri $downloadLink -OutFile 'sqlite.zip'\n Expand-Archive -Path sqlite.zip -DestinationPath C:\dev\\n Move-Item -Path C:\dev\sqlite-amalgamation-* C:\dev\SQLite\\n cd C:\dev\SQLite\n cl sqlite3.c -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_STAT4 -DSQLITE_SOUNDEX -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_GEOPOLY -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_MATH_FUNCTIONS -DSQLITE_MAX_ATTACHED=125 -DSQLITE_API="__declspec(dllexport)" -link -dll -out:sqlite3.dll\n\n - name: Download SQLean extension\n run: |\n if ("${{ matrix.arch }}" -eq "x86") {\n gh release download --pattern "sqlean-win-x86.zip" --repo "nalgeon/sqlean"\n Expand-Archive -Path sqlean-win-x86.zip -DestinationPath .\sqlean\n } else {\n gh release download --pattern "sqlean-win-x64.zip" --repo "nalgeon/sqlean"\n Expand-Archive -Path sqlean-win-x64.zip -DestinationPath .\sqlean\n }\n\n - name: Build 'formats' Extensions\n run: |\n cp .\src\extensions\extension-formats.c C:\dev\SQLite\\n cp .\src\extensions\extension-formats.def C:\dev\SQLite\\n cd C:\dev\SQLite\n cl /MD extension-formats.c -link -dll -def:extension-formats.def -out:formats.dll\n\n - name: Build SQLCipher\n run: |\n cd C:\dev\n Invoke-WebRequest -Uri https://github.com/sqlcipher/sqlcipher/archive/refs/tags/v4.6.1.zip -OutFile 'sqlcipher.zip'\n Expand-Archive -Path sqlcipher.zip -DestinationPath C:\dev\\n Move-Item -Path C:\dev\sqlcipher-4.6.1 C:\dev\SQLCipher\\n cd SQLCipher\n nmake /f Makefile.msc sqlcipher.dll USE_AMALGAMATION=1 NO_TCL=1 SQLITE3DLL=sqlcipher.dll SQLITE3LIB=sqlcipher.lib SQLITE3EXE=sqlcipher.exe LTLINKOPTS="C:\dev\OpenSSL\lib\libcrypto.lib" OPT_FEATURE_FLAGS="-DSQLITE_TEMP_STORE=2 -DSQLITE_HAS_CODEC=1 -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS5=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_STAT4=1 -DSQLITE_SOUNDEX=1 -DSQLITE_ENABLE_JSON1=1 -DSQLITE_ENABLE_GEOPOLY=1 -DSQLITE_ENABLE_RTREE=1 -DSQLCIPHER_CRYPTO_OPENSSL=1 -DSQLITE_MAX_ATTACHED=125 -IC:\dev\OpenSSL\include"\n mkdir sqlcipher\n copy sqlite3.h sqlcipher\n\n - name: Configure build (SQLite)\n run: |\n mkdir release-sqlite && cd release-sqlite\n cmake -G "Ninja Multi-Config" -DCMAKE_PREFIX_PATH="C:\dev\SQLite" ..\\n\n - name: Build (SQLite)\n run: |\n cd release-sqlite\n cmake --build . --config Release\n\n - name: Configure build (SQLCipher)\n run: |\n mkdir release-sqlcipher && cd release-sqlcipher\n cmake -G "Ninja Multi-Config" -Dsqlcipher=1 -DCMAKE_PREFIX_PATH="C:\dev\OpenSSL;C:\dev\SQLCipher" ..\\n\n - name: Build (SQLCipher)\n run: |\n cd release-sqlcipher\n cmake --build . --config Release\n\n - if: github.event_name != 'pull_request'\n name: Create MSI\n env:\n ExePath: ${{ github.workspace }}\n OpenSSLPath: C:\dev\OpenSSL\n SQLCipherPath: C:\dev\SQLCipher\n SqleanPath: ${{ github.workspace }}\sqlean\n SQLitePath: C:\dev\SQLite\n run: |\n cd installer/windows\n ./build.cmd "${{ matrix.arch }}".ToLower()\n $DATE=$(Get-Date -Format "yyyyMMdd")\n if ("${{ inputs.NIGHTLY }}" -eq "true") {\n mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-$DATE-${{ matrix.arch }}.msi"\n } else {\n mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-dev-$(git rev-parse --short HEAD)-${{ matrix.arch }}.msi"\n }\n\n - if: github.event_name != 'pull_request'\n name: Upload artifacts for code signing with SignPath\n id: unsigned-artifacts\n uses: actions/upload-artifact@v4\n with:\n name: build-artifacts-${{ matrix.os }}-${{ matrix.arch }}-unsigned\n path: installer\windows\DB.Browser.for.SQLite-*.msi\n\n # Change the signing-policy-slug when you release an RC, RTM or stable release.\n - if: github.event_name != 'pull_request'\n name: Code signing with SignPath\n uses: signpath/github-action-submit-signing-request@v1\n with:\n api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'\n github-artifact-id: '${{ steps.unsigned-artifacts.outputs.artifact-id }}'\n organization-id: '${{ secrets.SIGNPATH_ORGANIZATION_ID }}'\n output-artifact-directory: .\installer\windows\n project-slug: 'sqlitebrowser'\n signing-policy-slug: 'test-signing'\n wait-for-completion: true\n\n - if: github.event_name != 'pull_request'\n name: Create ZIP\n run: |\n $DATE=$(Get-Date -Format "yyyyMMdd")\n if ("${{ inputs.NIGHTLY }}" -eq "true") {\n $FILENAME_FORMAT="DB.Browser.for.SQLite-$DATE-${{ matrix.arch }}.zip"\n } else {\n $FILENAME_FORMAT="DB.Browser.for.SQLite-dev-$(git rev-parse --short HEAD)-${{ matrix.arch }}.zip"\n }\n Start-Process msiexec.exe -ArgumentList "/a $(dir installer\windows\DB.Browser.for.SQLite-*.msi) /q TARGETDIR=$PWD\target\" -Wait\n if ("${{ matrix.arch }}" -eq "x86") {\n move target\System\* "target\DB Browser for SQLite\"\n } else {\n move target\System64\* "target\DB Browser for SQLite\"\n }\n Compress-Archive -Path "target\DB Browser for SQLite\*" -DestinationPath $FILENAME_FORMAT\n\n - if: github.event_name != 'pull_request' && github.workflow != 'Build (Windows)'\n name: Prepare artifacts\n run: |\n mkdir build-artifacts\n move installer\windows\DB.Browser.for.SQLite-*.msi build-artifacts\\n move DB.Browser.for.SQLite-*.zip build-artifacts\\n Compress-Archive -Path build-artifacts\* -DestinationPath build-artifacts-${{ matrix.arch }}.zip\n\n - if: github.event_name != 'pull_request' && github.workflow != 'Build (Windows)'\n name: Upload artifacts\n uses: actions/upload-artifact@v4\n with:\n name: build-artifacts-${{ matrix.os }}-${{ matrix.arch }}\n path: build-artifacts-${{ matrix.arch }}.zip\n \n - if: github.event_name == 'workflow_dispatch' && github.workflow == 'Build (Windows)'\n name: Release\n uses: softprops/action-gh-release@v2\n with:\n files: installer/windows/DB.Browser.for.SQLite-*.msi, DB.Browser.for.SQLite-*.zip\n prerelease: true\n tag_name: ${{ github.sha }}-windows\n\n - name: Summary\n run: |\n $OPENSSL_VERSION=(C:\dev\OpenSSL\bin\openssl version) -replace "OpenSSL ([\d\.]+[a-z]+) .*", '$1'\n $QT_VERSION = & "$env:QT_ROOT_DIR\bin\qmake.exe" --version | Select-String "Using Qt version" | ForEach-Object { $_.ToString().Split()[3] }\n $SQLCIPHER_VERSION=(Get-Item "C:\dev\SQLCipher\sqlcipher.dll").VersionInfo.FileVersion\n Select-String -Path "C:\dev\SQLite\sqlite3.h" -Pattern '#define SQLITE_VERSION\s+"([\d\.]+)"' | ForEach-Object {\n ($_ -match '"([\d\.]+)"') | Out-Null\n $SQLITE_VERSION=$matches[1]\n }\n\n echo "## Libaries used" >> $env:GITHUB_STEP_SUMMARY\n echo "OpenSSL: $OPENSSL_VERSION, Qt: $QT_VERSION, SQLCipher: $SQLCIPHER_VERSION, SQLite: $SQLITE_VERSION" >> $env:GITHUB_STEP_SUMMARY\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\workflows\cppcmake-windows.yml
cppcmake-windows.yml
YAML
9,670
0.95
0.161137
0.021277
react-lib
99
2024-04-11T17:47:56.945987
GPL-3.0
false
733120915463f9b0c7d27cac0cccbaad
name: CI\n\non:\n push:\n branches: [master]\n pull_request:\n schedule:\n - cron: '0 0 * * *' # Every day at midnight UTC\n workflow_dispatch:\n inputs:\n NIGHTLY:\n description: 'Run as a nightly build'\n default: false\n required: true\n type: boolean\n\nrun-name: "${{ (github.event_name == 'schedule' || inputs.NIGHTLY == true) && 'Build and Deploy Nightly Builds' || github.event.head_commit.message}}"\n\njobs:\n check-skippable:\n name: Check Skippable\n runs-on: ubuntu-24.04\n outputs:\n skip: ${{ steps.set-skippable.outputs.skippable || 'false' }}\n steps:\n - uses: actions/checkout@v4\n\n - name: Check and set skippable\n id: set-skippable\n continue-on-error: true\n run: |\n if [ "${{ github.event_name }}" = "schedule" ]; then\n git fetch origin tag nightly\n LAST_COMMIT_HASH=$(git rev-list -n 1 nightly)\n if [ "$(git rev-parse HEAD)" = "$LAST_COMMIT_HASH" ]; then\n echo "::notice::No new commits since last nightly build, skipping this build."\n echo "skippable=true" >> $GITHUB_OUTPUT\n fi\n else\n echo "skippable=false" >> $GITHUB_OUTPUT\n fi\n\n build-macos:\n needs: check-skippable\n if: needs.check-skippable.outputs.skip != 'true'\n uses: ./.github/workflows/cppcmake-macos.yml\n secrets: inherit\n with:\n NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}\n\n build-ubuntu:\n needs: check-skippable\n if: needs.check-skippable.outputs.skip != 'true'\n uses: ./.github/workflows/cppcmake-ubuntu.yml\n with:\n NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}\n\n build-windows:\n needs: check-skippable\n if: needs.check-skippable.outputs.skip != 'true'\n uses: ./.github/workflows/cppcmake-windows.yml\n secrets: inherit\n with:\n NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}\n\n release:\n if: github.event_name != 'pull_request'\n needs: [build-macos, build-ubuntu, build-windows]\n name: Release\n runs-on: ubuntu-24.04\n env:\n GH_TOKEN: ${{ github.token }}\n tag_name: ${{ (github.event_name == 'schedule' || inputs.NIGHTLY == true) && 'nightly' || 'continuous' }}\n steps:\n - name: Delete existing tag and release\n run: gh release delete ${{ env.tag_name }} --cleanup-tag --yes --repo $GITHUB_REPOSITORY\n continue-on-error: true\n\n - run: mkdir -v target\n\n - name: Download artifacts\n uses: actions/download-artifact@v4\n with:\n path: target\n\n - name: Remove unsigned Windows build\n run: rm -rfv target/*unsigned*\n\n - run: find target -type f -exec mv -v {} target \;\n\n - name: Unarchive Windows's build artifacts\n run: for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done\n\n - name: Release\n uses: softprops/action-gh-release@v2\n with:\n files: target/*\n prerelease: true\n tag_name: ${{ env.tag_name }}\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\workflows\cppcmake.yml
cppcmake.yml
YAML
3,076
0.95
0.070707
0
awesome-app
644
2024-05-20T14:31:17.771709
BSD-3-Clause
false
4b4f042527940484b24c2138c0666b45
name: Publish to WinGet\n\non:\n release:\n types: [released]\n\njobs:\n publish:\n runs-on: ubuntu-latest\n steps:\n - uses: vedantmgoyal9/winget-releaser@main\n with:\n identifier: DBBrowserForSQLite.DBBrowserForSQLite\n installers-regex: '\.msi$' # Only .msi files\n token: ${{ secrets.WINGET_TOKEN }}\n
dataset_sample\yaml\sqlitebrowser_sqlitebrowser\.github\workflows\winget.yml
winget.yml
YAML
341
0.8
0
0
react-lib
846
2025-01-31T23:14:23.403635
Apache-2.0
false
746c739112216d17fd71975c3ace92d7
site_name: OkHttp\nsite_url: https://square.github.io/okhttp/\nrepo_name: OkHttp\nrepo_url: https://github.com/square/okhttp\nsite_description: "Square’s meticulous HTTP client for the JVM, Android, and GraalVM"\nsite_author: Square, Inc.\nremote_branch: gh-pages\nedit_uri: ""\n\ncopyright: 'Copyright &copy; 2022 Block, Inc.'\n\ntheme:\n name: 'material'\n favicon: assets/images/icon-square.png\n logo: assets/images/icon-square.png\n palette:\n - media: "(prefers-color-scheme: light)"\n scheme: default\n primary: teal\n accent: blue\n toggle:\n icon: octicons/sun-24\n name: "Switch to Dark Mode"\n - media: "(prefers-color-scheme: dark)"\n scheme: slate\n primary: teal\n accent: blue\n toggle:\n icon: octicons/moon-24\n name: "Switch to Light Mode"\n features:\n - navigation.tabs\n\nextra_css:\n - 'assets/css/app.css'\n\nmarkdown_extensions:\n - smarty\n - footnotes\n - meta\n - toc:\n permalink: true\n - attr_list\n - pymdownx.betterem:\n smart_enable: all\n - pymdownx.caret\n - pymdownx.emoji:\n emoji_index: !!python/name:material.extensions.emoji.twemoji\n emoji_generator: !!python/name:material.extensions.emoji.to_svg\n - pymdownx.inlinehilite\n - pymdownx.magiclink\n - pymdownx.smartsymbols\n - pymdownx.superfences\n - pymdownx.tilde\n - pymdownx.tabbed:\n alternate_style: true\n - tables\n\nplugins:\n - search\n - redirects:\n redirect_maps:\n # Redirect all feature pages to features/*\n 'caching.md': 'features/caching.md'\n 'calls.md': 'features/calls.md'\n 'connections.md': 'features/connections.md'\n 'events.md': 'features/events.md'\n 'https.md': 'features/events.md'\n 'interceptors.md': 'features/interceptors.md'\n 'r8_proguard.md': 'features/r8_proguard.md'\n # Redirect all Security pages to security/*\n 'security.md': 'security/security.md'\n 'security_providers.md': 'security/security_providers.md'\n 'tls_configuration_history.md': 'security/tls_configuration_history.md'\n # Redirect all changelog pages to changelog/*\n 'changelog.md': 'changelogs/changelog.md'\n 'upgrading_to_okhttp_4.md': 'changelogs/upgrading_to_okhttp_4.md'\n 'changelog_3x.md': 'changelogs/changelog_3x.md'\n 'changelog_2x.md': 'changelogs/changelog_2x.md'\n 'changelog_1x.md': 'changelogs/changelog_1x.md'\n # Redirect all contributing pages to contribute/*\n 'contributing.md': 'contribute/contributing.md'\n 'code_of_conduct.md': 'contribute/code_of_conduct.md'\n 'concurrency.md': 'contribute/concurrency.md'\n 'debug_logging.md': 'contribute/debug_logging.md'\n\nnav:\n - 'Overview':\n - 'Overview': index.md\n - 'Stack Overflow': https://stackoverflow.com/questions/tagged/okhttp?sort=active\n - 'Features':\n - 'Calls': features/calls.md\n - 'Caching': features/caching.md\n - 'Connections': features/connections.md\n - 'Events': features/events.md\n - 'HTTPS': features/https.md\n - 'Interceptors': features/interceptors.md\n - 'R8/Proguard': features/r8_proguard.md\n - 'Recipes': recipes.md\n - 'Security':\n - 'Security': security/security.md\n - 'Providers': security/security_providers.md\n - 'Configuration History': security/tls_configuration_history.md\n - 'Works with OkHttp': works_with_okhttp.md\n - 'API': 5.x/okhttp/okhttp3/\n - 'Change Logs':\n - 'Change Log': changelogs/changelog.md\n - '4.x Change Log': changelogs/changelog_4x.md\n - 'Upgrading to OkHttp 4': changelogs/upgrading_to_okhttp_4.md\n - '3.x Change Log': changelogs/changelog_3x.md\n - '2.x Change Log': changelogs/changelog_2x.md\n - '1.x Change Log': changelogs/changelog_1x.md\n - 'Contributing':\n - 'Contributing': contribute/contributing.md\n - 'Code of Conduct': contribute/code_of_conduct.md\n - 'Concurrency': contribute/concurrency.md\n - 'Debug Logging': contribute/debug_logging.md\n
dataset_sample\yaml\square_okhttp\mkdocs.yml
mkdocs.yml
YAML
3,951
0.8
0.008547
0.036036
vue-tools
985
2023-09-28T11:53:11.241102
Apache-2.0
false
e38996f97aac41ea20d1cf40e8202b16
name: build\n\non:\n push:\n branches:\n - master\n pull_request:\n types: [opened, labeled, unlabeled, synchronize]\n\npermissions:\n contents: read\n\nenv:\n GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"\n\njobs:\n publish:\n runs-on: ubuntu-latest\n if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Upload Artifacts\n run: ./gradlew clean publish --stacktrace\n env:\n ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME_COM_SQUAREUP }}\n ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD_COM_SQUAREUP }}\n ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_SECRET_KEY }}\n ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.GPG_SECRET_PASSPHRASE }}\n\n validation:\n name: "Validation"\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: gradle/actions/wrapper-validation@v4\n - name: Validate Renovate\n uses: rinchsan/renovate-config-validator@v0.2.0\n with:\n pattern: '.github/renovate.json'\n\n checkjdk11:\n permissions:\n checks: write # for mikepenz/action-junit-report\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - uses: graalvm/setup-graalvm@v1\n with:\n distribution: 'graalvm'\n java-version: 21\n github-token: ${{ secrets.GITHUB_TOKEN }}\n cache: 'gradle'\n native-image-job-reports: true\n components: 'native-image'\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew check -PandroidBuild=true -PgraalBuild=true -x test -x test\n\n testopenjdk11:\n permissions:\n checks: write # for mikepenz/action-junit-report\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=11\n\n - name: Publish Test Report\n if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'\n uses: mikepenz/action-junit-report@v5\n with:\n report_paths: '**/build/test-results/*/TEST-*.xml'\n check_name: OpenJDK 11 Test Report\n\n - name: Publish Test Results\n uses: EnricoMi/publish-unit-test-result-action@v2\n if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'\n with:\n files: |\n **/build/test-results/*/TEST-*.xml\n\n testzulu11:\n runs-on: ubuntu-latest\n if: contains(github.event.pull_request.labels.*.name, 'zulu')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=11\n\n testopenjdk8:\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'jdkversions') || contains(github.event.pull_request.labels.*.name, 'renovate')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=8\n\n testopenjdk8alpn:\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'jdkversions')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Install Old JDK 8\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 8.0.242\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=8 -Dokhttp.platform=jdk8alpn -Dalpn.boot.version=8.1.13.v20181017 -Dorg.gradle.java.installations.paths=/opt/hostedtoolcache/Java_Adopt_jdk/8.0.242-8.1/x64\n\n testopenjsse:\n runs-on: ubuntu-latest\n if: contains(github.event.pull_request.labels.*.name, 'providers')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=8 -Dokhttp.platform=openjsse\n\n testconscrypt:\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'conscrypt')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dokhttp.platform=conscrypt\n\n testbouncycastle:\n runs-on: ubuntu-latest\n if: contains(github.event.pull_request.labels.*.name, 'providers')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dokhttp.platform=bouncycastle\n\n testcorretto:\n runs-on: ubuntu-latest\n # TODO add master build after fixing all tests in CI\n if: contains(github.event.pull_request.labels.*.name, 'providers')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dokhttp.platform=corretto\n\n testopenjdk17:\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'jdkversions') || contains(github.event.pull_request.labels.*.name, 'renovate')\n\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=17\n\n testopenjdk21:\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'jdkversions') || contains(github.event.pull_request.labels.*.name, 'renovate')\n\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 21\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dtest.java.version=21\n\n testwindows:\n runs-on: windows-latest\n # TODO add master build after fixing all tests in CI\n if: contains(github.event.pull_request.labels.*.name, 'windows')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Test\n run: ./gradlew test\n\n testgraal:\n runs-on: ubuntu-latest\n # TODO add master build after fixing all tests in CI\n if: contains(github.event.pull_request.labels.*.name, 'graal')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - uses: graalvm/setup-graalvm@v1\n with:\n distribution: 'graalvm'\n java-version: 21\n github-token: ${{ secrets.GITHUB_TOKEN }}\n cache: 'gradle'\n native-image-job-reports: true\n components: 'native-image'\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Build okcurl\n run: ./gradlew okcurl:nativeBuild\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run native-image tests\n run: ./gradlew -PgraalBuild=true native-image-tests:nativeTest\n\n testandroid:\n runs-on: ubuntu-latest\n timeout-minutes: 30\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'android') || contains(github.event.pull_request.labels.*.name, 'renovate')\n\n strategy:\n fail-fast: false\n matrix:\n api-level:\n - 21\n - 29\n - 34\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Enable KVM group perms\n # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/\n run: |\n echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules\n sudo udevadm control --reload-rules\n sudo udevadm trigger --name-match=kvm\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Gradle cache\n run: ./gradlew -PandroidBuild=true :android-test:test\n\n - name: AVD cache\n uses: actions/cache@v4\n id: avd-cache\n with:\n path: |\n ~/.android/avd/*\n ~/.android/adb*\n key: avd-${{ matrix.api-level }}\n\n - name: Create AVD and generate snapshot for caching\n if: steps.avd-cache.outputs.cache-hit != 'true'\n uses: reactivecircus/android-emulator-runner@v2\n with:\n api-level: ${{ matrix.api-level }}\n arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}\n force-avd-creation: false\n emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none\n disable-animations: false\n script: echo "Generated AVD snapshot for caching."\n\n - name: Run Tests\n uses: reactivecircus/android-emulator-runner@v2\n with:\n api-level: ${{ matrix.api-level }}\n arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}\n script: ./gradlew -PandroidBuild=true :android-test:connectedCheck\n env:\n API_LEVEL: ${{ matrix.api-level }}\n\n - name: Run Release Tests\n uses: reactivecircus/android-emulator-runner@v2\n with:\n api-level: ${{ matrix.api-level }}\n arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}\n script: ./gradlew -PandroidBuild=true :android-test-app:connectedCheck\n env:\n API_LEVEL: ${{ matrix.api-level }}\n\n testloom:\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'loom')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 21\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Checks\n run: ./gradlew test -Dokhttp.platform=loom -Dtest.java.version=21 -PcontainerTests=true\n\n\n testandroidregression:\n runs-on: ubuntu-latest\n timeout-minutes: 10\n if: contains(github.event.pull_request.labels.*.name, 'android-regression')\n\n strategy:\n fail-fast: false\n matrix:\n api-level:\n - 29\n - 34\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 11\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Enable KVM group perms\n # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/\n run: |\n echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules\n sudo udevadm control --reload-rules\n sudo udevadm trigger --name-match=kvm\n\n - name: Gradle cache\n uses: gradle/actions/setup-gradle@v4\n\n - name: AVD cache\n uses: actions/cache@v4\n id: avd-cache\n with:\n path: |\n ~/.android/avd/*\n ~/.android/adb*\n key: avd-${{ matrix.api-level }}\n\n - name: Create AVD and generate snapshot for caching\n if: steps.avd-cache.outputs.cache-hit != 'true'\n uses: reactivecircus/android-emulator-runner@v2\n with:\n api-level: ${{ matrix.api-level }}\n force-avd-creation: false\n arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}\n emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none\n disable-animations: false\n script: echo "Generated AVD snapshot for caching."\n\n - name: Run Tests\n uses: reactivecircus/android-emulator-runner@v2\n with:\n api-level: ${{ matrix.api-level }}\n arch: ${{ matrix.api-level == '34' && 'x86_64' || 'x86' }}\n script: ./gradlew -PandroidBuild=true :regression-test:connectedCheck\n env:\n API_LEVEL: ${{ matrix.api-level }}\n
dataset_sample\yaml\square_okhttp\.github\workflows\build.yml
build.yml
YAML
18,147
0.8
0.037651
0.011194
awesome-app
263
2025-06-01T08:18:16.877829
BSD-3-Clause
false
26ad6f27210047ad377f546b90c82e80
name: containers\n\non:\n push:\n branches:\n - master\n pull_request:\n types: [opened, labeled, unlabeled, synchronize]\n\npermissions:\n contents: read\n\nenv:\n GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"\n\njobs:\n test_containers:\n permissions:\n checks: write # for actions/upload-artifact\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'containers')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - name: Setup Gradle\n uses: gradle/actions/setup-gradle@v4\n\n - name: Run Container Tests\n run: ./gradlew container-tests:test -PcontainerTests=true\n
dataset_sample\yaml\square_okhttp\.github\workflows\containers.yml
containers.yml
YAML
911
0.8
0.051282
0
awesome-app
368
2023-10-04T22:16:55.315133
BSD-3-Clause
false
c42b71b776e04cd64a6c8689841377e8
name: docs\n\non:\n push:\n branches:\n - master\n pull_request:\n types: [opened, labeled, unlabeled, synchronize]\n\npermissions:\n contents: read\n\nenv:\n GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"\n\njobs:\n test_docs:\n permissions:\n checks: write # for actions/upload-artifact\n runs-on: ubuntu-latest\n if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'documentation')\n\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: Configure JDK\n uses: actions/setup-java@v4\n with:\n distribution: 'zulu'\n java-version: 17\n\n - uses: actions/setup-python@v5\n with:\n python-version: 3.x\n\n - run: pip install mkdocs-material mkdocs-redirects\n\n - name: Generate Docs\n run: ./test_docs.sh\n\n - uses: actions/upload-artifact@v4\n with:\n name: docs\n path: site/\n
dataset_sample\yaml\square_okhttp\.github\workflows\docs.yml
docs.yml
YAML
1,026
0.8
0.042553
0
awesome-app
393
2025-06-30T23:28:34.627458
BSD-3-Clause
false
d2d77a1f684e02ffd9df8cd870dbcd96
name: Remove outdated labels\n\non:\n # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target\n issues:\n types:\n - closed\n pull_request_target:\n types:\n - closed\n\njobs:\n on-issue-close:\n runs-on: ubuntu-latest\n if: github.repository_owner == 'squizlabs' && github.event.issue.state == 'closed'\n\n name: Clean up labels on issue close\n\n steps:\n - uses: mondeja/remove-labels-gh-action@v1\n with:\n token: ${{ secrets.GITHUB_TOKEN }}\n labels: |\n Status: awaiting feedback\n Status: close candidate\n Status: needs investigation\n Status: triage\n\n on-pr-merge:\n runs-on: ubuntu-latest\n if: github.repository_owner == 'squizlabs' && github.event.pull_request.merged == true\n\n name: Clean up labels on PR merge\n\n steps:\n - uses: mondeja/remove-labels-gh-action@v1\n with:\n token: ${{ secrets.GITHUB_TOKEN }}\n labels: |\n Status: awaiting feedback\n Status: close candidate\n Status: needs investigation\n Status: triage\n\n on-pr-close:\n runs-on: ubuntu-latest\n if: github.repository_owner == 'squizlabs' && github.event_name == 'pull_request_target' && github.event.pull_request.merged == false\n\n name: Clean up labels on PR close\n\n steps:\n - uses: mondeja/remove-labels-gh-action@v1\n with:\n token: ${{ secrets.GITHUB_TOKEN }}\n labels: |\n Status: awaiting feedback\n Status: close candidate\n Status: needs investigation\n Status: triage\n
dataset_sample\yaml\squizlabs_PHP_CodeSniffer\.github\workflows\manage-labels.yml
manage-labels.yml
YAML
1,641
0.8
0.050847
0.020408
node-utils
75
2024-11-27T13:15:12.976276
BSD-3-Clause
false
3f384d0d170633aa390fed1ad2b98c54
name: PHPStan\n\non:\n # Run on all pushes and on all pull requests.\n # Prevent the build from running when there are only irrelevant changes.\n push:\n paths-ignore:\n - '**.md'\n pull_request:\n paths-ignore:\n - '**.md'\n # Allow manually triggering the workflow.\n workflow_dispatch:\n\njobs:\n phpstan:\n name: "PHP: 7.4 | PHPStan"\n\n runs-on: "ubuntu-latest"\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v3\n\n - name: Install PHP\n uses: shivammathur/setup-php@v2\n with:\n php-version: '7.4'\n coverage: none\n tools: phpstan\n\n # Install dependencies and handle caching in one go.\n # Dependencies need to be installed to make sure the PHPUnit classes are recognized.\n # @link https://github.com/marketplace/actions/install-composer-dependencies\n - name: Install Composer dependencies\n uses: "ramsey/composer-install@v2"\n with:\n # Bust the cache at least once a month - output format: YYYY-MM.\n custom-cache-suffix: $(date -u "+%Y-%m")\n\n - name: Run PHPStan\n run: phpstan analyse --configuration=phpstan.neon\n
dataset_sample\yaml\squizlabs_PHP_CodeSniffer\.github\workflows\phpstan.yml
phpstan.yml
YAML
1,158
0.8
0
0.2
python-kit
527
2024-09-23T16:24:55.404823
GPL-3.0
false
3cba39b1be280f6baad8f7176c6ee4d2
name: Validate\n\non:\n # Run on all pushes and on all pull requests.\n # Prevent the build from running when there are only irrelevant changes.\n push:\n paths-ignore:\n - '**.md'\n pull_request:\n paths-ignore:\n - '**.md'\n # Allow manually triggering the workflow.\n workflow_dispatch:\n\njobs:\n checkxml:\n name: Check XML files\n runs-on: ubuntu-latest\n\n env:\n XMLLINT_INDENT: ' '\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v3\n\n - name: Install xmllint\n run: |\n sudo apt-get update\n sudo apt-get install --no-install-recommends -y libxml2-utils\n\n - name: Retrieve XML Schema\n run: curl -O https://www.w3.org/2012/04/XMLSchema.xsd\n\n # Show XML violations inline in the file diff.\n # @link https://github.com/marketplace/actions/xmllint-problem-matcher\n - uses: korelstar/xmllint-problem-matcher@v1\n\n # Validate the XML ruleset files.\n # @link http://xmlsoft.org/xmllint.html\n - name: Validate rulesets against schema\n run: xmllint --noout --schema phpcs.xsd ./src/Standards/*/ruleset.xml\n\n # Validate the XSD file.\n # @link http://xmlsoft.org/xmllint.html\n - name: Validate XSD against schema\n run: xmllint --noout --schema ./XMLSchema.xsd ./phpcs.xsd\n\n # Check the code-style consistency of the XML files.\n - name: Check XML code style\n run: |\n diff -B ./phpcs.xml.dist <(xmllint --format "./phpcs.xml.dist")\n diff -B ./src/Standards/Generic/ruleset.xml <(xmllint --format "./src/Standards/Generic/ruleset.xml")\n diff -B ./src/Standards/MySource/ruleset.xml <(xmllint --format "./src/Standards/MySource/ruleset.xml")\n diff -B ./src/Standards/PEAR/ruleset.xml <(xmllint --format "./src/Standards/PEAR/ruleset.xml")\n diff -B ./src/Standards/PSR1/ruleset.xml <(xmllint --format "./src/Standards/PSR1/ruleset.xml")\n diff -B ./src/Standards/PSR2/ruleset.xml <(xmllint --format "./src/Standards/PSR2/ruleset.xml")\n diff -B ./src/Standards/PSR12/ruleset.xml <(xmllint --format "./src/Standards/PSR12/ruleset.xml")\n diff -B ./src/Standards/Squiz/ruleset.xml <(xmllint --format "./src/Standards/Squiz/ruleset.xml")\n diff -B ./src/Standards/Zend/ruleset.xml <(xmllint --format "./src/Standards/Zend/ruleset.xml")\n\n pear:\n name: "PHP: 7.4 | PEAR package validation"\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v3\n\n - name: Install PHP\n uses: shivammathur/setup-php@v2\n with:\n php-version: '7.4'\n coverage: none\n\n - name: Validate the PEAR package file contents\n run: php scripts/validate-pear-package.php\n\n - name: Validate the PEAR package\n run: pear package-validate package.xml\n
dataset_sample\yaml\squizlabs_PHP_CodeSniffer\.github\workflows\validate.yml
validate.yml
YAML
2,846
0.8
0
0.153846
awesome-app
976
2024-12-04T05:19:30.502381
GPL-3.0
false
b0d5ccc1150876b09478b69b9ec264ce
name: Bug report\ndescription: Fill out a bug report to help us improve Statamic.\nbody:\n - type: textarea\n attributes:\n label: Bug description\n description: What happened? What did you expect to happen? Feel free to drop any screenshots in here.\n placeholder: I did this thing over here, and saw this error...\n validations:\n required: true\n - type: textarea\n attributes:\n label: How to reproduce\n description: List the steps so we're able to recreate this bug. Bonus points if you can provide an example GitHub repo with this bug reproduced.\n placeholder: Go here, Type this, Click that, Look over there.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Logs\n description: You can paste any relevant logs here, they'll be automatically rendered in code blocks. You can find your logs in `storage/logs`.\n render: shell\n - type: textarea\n attributes:\n label: Environment\n description: |\n Please paste the *full* output of the `php please support:details` command. It gives us some context about your project.\n render: yaml # the format of the command is close to yaml and gets highlighted nicely\n validations:\n required: true\n - type: dropdown\n attributes:\n label: Installation\n description: How did you install Statamic?\n options:\n - Fresh statamic/statamic site via CLI\n - Starter Kit using via CLI\n - Existing Laravel app\n - Other (please explain)\n validations:\n required: true\n - type: textarea\n attributes:\n label: Additional details\n description: Fancy setup? Anything else you need to share?\n
dataset_sample\yaml\statamic_cms\.github\ISSUE_TEMPLATE\bug_report.yml
bug_report.yml
YAML
1,692
0.95
0.022222
0
react-lib
13
2024-04-06T18:57:20.030773
GPL-3.0
false
2dc92aaa1c41235692e539064841dead
blank_issues_enabled: false\n\ncontact_links:\n - name: Feature Requests and Ideas\n url: https://github.com/statamic/ideas/issues/new\n about: Please submit feature requests to the ideas repo.\n - name: Support Questions & Other\n url: https://statamic.com/support\n about: 'If you have a question or need help using Statamic'\n - name: Documentation issue\n url: https://github.com/statamic/docs\n about: For documentation issues, open a pull request at the statamic/docs repository\n
dataset_sample\yaml\statamic_cms\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
495
0.8
0
0
awesome-app
864
2025-03-03T13:35:58.028527
MIT
false
f587c3cd8bb30b1152ab67b8fa15632e
name: Fix PHP code style issues\n\non:\n push:\n paths:\n - '**.php'\n\npermissions:\n contents: write\n\njobs:\n fix-php-code-styling:\n runs-on: ubuntu-latest\n if: github.repository_owner == 'statamic'\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v4\n with:\n ref: ${{ github.head_ref }}\n token: ${{ secrets.PINT }}\n\n - name: Fix PHP code style issues\n uses: aglipanci/laravel-pint-action@v2\n with:\n pintVersion: 1.16.0\n\n - name: Commit changes\n uses: stefanzweifel/git-auto-commit-action@v5\n with:\n commit_message: Fix styling\n
dataset_sample\yaml\statamic_cms\.github\workflows\pint-fix.yml
pint-fix.yml
YAML
640
0.7
0.032258
0
react-lib
479
2025-02-18T01:03:39.508818
GPL-3.0
false
582b15e7800015f7341304e318bef694
name: Lint PHP code style issues\n\non:\n pull_request:\n paths:\n - '**.php'\n\njobs:\n lint-php-code-styling:\n runs-on: ubuntu-latest\n\n steps:\n - name: Checkout code\n uses: actions/checkout@v4\n\n - name: Check PHP code style issues\n uses: aglipanci/laravel-pint-action@v2\n with:\n testMode: true\n verboseMode: true\n pintVersion: 1.16.0\n
dataset_sample\yaml\statamic_cms\.github\workflows\pint-lint.yml
pint-lint.yml
YAML
402
0.7
0
0
react-lib
461
2025-05-19T23:35:22.855879
MIT
false
7dd632fab5f2e4630b88efb21267ebf1
name: Pull Request Title\n\non:\n pull_request:\n types: [opened, edited, synchronize, reopened]\n\njobs:\n pr-title:\n runs-on: ubuntu-latest\n steps:\n - uses: deepakputhraya/action-pr-title@master\n with:\n regex: '^\[\d+\.x\]\s'\n
dataset_sample\yaml\statamic_cms\.github\workflows\pr-title.yml
pr-title.yml
YAML
253
0.7
0
0
vue-tools
703
2023-12-07T04:43:07.995181
BSD-3-Clause
false
93ea4ba6380098ed5b034b9724b431de
name: Pull Requests\n\n# Credit: https://github.com/github/docs/blob/main/.github/workflows/notify-when-maintainers-cannot-edit.yaml\n# https://github.com/laravel/.github/blob/main/.github/workflows/pull-requests.yml\n\non:\n pull_request_target:\n types:\n - opened\n\npermissions:\n pull-requests: write\n\njobs:\n uneditable:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/github-script@v7\n with:\n script: |\n const repo = context.repo.repo;\n\n const query = `\n query($number: Int!) {\n repository(owner: "statamic", name: "${repo}") {\n pullRequest(number: $number) {\n headRepositoryOwner {\n login\n }\n maintainerCanModify\n state\n }\n }\n }\n `;\n\n const pullNumber = context.issue.number;\n const variables = { number: pullNumber };\n\n try {\n console.log(`Check for maintainer edit access ...`);\n const result = await github.graphql(query, variables);\n console.log(JSON.stringify(result, null, 2));\n const pullRequest = result.repository.pullRequest;\n\n if (pullRequest.headRepositoryOwner.login === 'statamic') {\n console.log('PR owned by statamic');\n return;\n }\n\n if (pullRequest.state !== 'OPEN') {\n console.log('PR has already been closed or merged');\n return;\n }\n\n if (!pullRequest.maintainerCanModify) {\n console.log('PR not owned by statamic and does not have maintainer edits enabled');\n\n await github.rest.issues.createComment({\n issue_number: pullNumber,\n owner: 'statamic',\n repo,\n body: "Thanks for submitting a PR!\n\nIn order to review and merge PRs most efficiently, we require that all PRs grant maintainer edit access before we review them. For information on how to do this, [see the relevant GitHub documentation](https://docs.github.com/en/github/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork). Additionally, GitHub doesn't allow maintainer permissions from organization accounts. Please resubmit this PR from a personal GitHub account with maintainer permissions enabled."\n });\n\n await github.rest.pulls.update({\n pull_number: pullNumber,\n owner: 'statamic',\n repo,\n state: 'closed'\n });\n }\n } catch(e) {\n console.log(e);\n }\n
dataset_sample\yaml\statamic_cms\.github\workflows\pull-requests.yml
pull-requests.yml
YAML
2,832
0.95
0.093333
0.031746
awesome-app
469
2024-10-06T00:55:43.352196
Apache-2.0
false
06e190a8035d0c69eb8708ab41044273
name: Create Release\n\non:\n push:\n tags:\n - 'v*'\n\njobs:\n build:\n runs-on: ubuntu-latest\n steps:\n - name: Checkout code\n uses: actions/checkout@v4\n\n - name: Use Node.js 16.13.0\n uses: actions/setup-node@v4\n with:\n node-version: 16.13.0\n\n - name: Install required npm version\n run: npm -g install npm@8.5.5\n\n - name: Install dependencies\n run: npm ci\n\n - name: Compile assets\n run: npm run build\n\n - name: Compile frontend assets\n run: npm run frontend-build\n\n - name: Create dist zip\n run: cd resources && tar -czvf dist.tar.gz dist\n\n - name: Create dist-frontend zip\n run: cd resources && tar -czvf dist-frontend.tar.gz dist-frontend\n\n - name: Get Changelog\n id: changelog\n uses: statamic/changelog-action@v1\n with:\n version: ${{ github.ref }}\n\n - name: Create release\n id: create_release\n uses: actions/create-release@v1\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n with:\n tag_name: ${{ steps.changelog.outputs.version }}\n release_name: ${{ steps.changelog.outputs.version }}\n body: ${{ steps.changelog.outputs.text }}\n\n - name: Upload dist zip to release\n uses: actions/upload-release-asset@v1.0.1\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n with:\n upload_url: ${{ steps.create_release.outputs.upload_url }}\n asset_path: ./resources/dist.tar.gz\n asset_name: dist.tar.gz\n asset_content_type: application/tar+gz\n\n - name: Upload dist-frontend zip to release\n uses: actions/upload-release-asset@v1.0.1\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n with:\n upload_url: ${{ steps.create_release.outputs.upload_url }}\n asset_path: ./resources/dist-frontend.tar.gz\n asset_name: dist-frontend.tar.gz\n asset_content_type: application/tar+gz\n
dataset_sample\yaml\statamic_cms\.github\workflows\release.yml
release.yml
YAML
2,021
0.85
0
0
vue-tools
992
2024-06-04T10:49:37.393933
BSD-3-Clause
false
56ff416e45d34e40fecde8cd37b8dd31
name: "Close stale issues"\non:\n workflow_dispatch:\n schedule:\n - cron: "30 1 * * *"\n\njobs:\n stale:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/stale@v9\n with:\n repo-token: ${{ secrets.GITHUB_TOKEN }}\n days-before-stale: 60\n days-before-close: 7\n ascending: true\n only-labels: 'needs more info'\n stale-issue-label: stale\n stale-issue-message: >\n This issue has not had recent activity and has been marked as stale — by me, a robot.\n Simply reply to keep it open and send me away. If you do nothing, I will close it in\n a week. I have no feelings, so whatever you do is fine by me.\n
dataset_sample\yaml\statamic_cms\.github\workflows\stale.yml
stale.yml
YAML
681
0.7
0
0
vue-tools
706
2023-10-01T20:35:46.128467
MIT
false
5383900241e4b075436c2b5b7eee674e