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: Update Cargo.lock Pull Request\non:\n schedule:\n - cron: '0 6 * * TUE,WED,THU,FRI,SAT,SUN' # every day except Monday (reserved for dependabot)\n workflow_dispatch: # allows to manually trigger the workflow as well\n\njobs:\n update-cargo-lock-file:\n name: Update Cargo.lock file\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: actions-rs/toolchain@v1\n with:\n toolchain: stable\n # we use a GitHub app token so that other workflows can react to the\n # creation of the Pull Request.\n # Following these guidelines -> https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#authenticating-with-github-app-generated-tokens\n # For additional info -> https://github.com/actions/create-github-app-token\n - name: generate GitHub app token\n id: generate-app-token\n uses: actions/create-github-app-token@v2\n with:\n app-id: ${{ secrets.UPDATE_CARGO_LOCK_APP_ID }}\n private-key: ${{ secrets.UPDATE_CARGO_LOCK_APP_PRIVATE_KEY }}\n - name: cargo update\n run: cargo update\n - name: create pull request\n uses: peter-evans/create-pull-request@v7\n with:\n token: ${{ steps.generate-app-token.outputs.token }}\n branch: "create-pull-request/update-cargo-lock"\n title: "Cargo.lock update"\n body: |\n This PR has been automatically created by the [update-cargo-lock.yml](https://github.com/tracel-ai/burn/blob/main/.github/workflows/update-cargo-lock.yml) workflow.\n commit-message: |\n Update Cargo.lock\n\n This commit has been automatically generated by\n update-cargo-lock.yml workflow.\n labels: dependencies,automated\n delete-branch: true\n
dataset_sample\yaml\tracel-ai_burn\.github\workflows\update-cargo-lock.yml
update-cargo-lock.yml
YAML
1,811
0.8
0.02381
0.1
vue-tools
770
2024-12-18T01:23:48.977741
BSD-3-Clause
false
02e0c90da676ff5dd51a07b8563f413d
name: valgrind\n\non:\n schedule:\n - cron: '0 23 * * WED' # Run every Wednesday at 23:00 (UTC)\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n valgrind:\n\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Install llvmpipe and lavapipe\n uses: tracel-ai/github-actions/setup-llvmpipe-lavapipe@v1\n\n - name: Install valgrind\n run: |\n sudo apt-get install valgrind\n\n - name: Run cargo-valgrind\n env:\n CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "valgrind -s --leak-check=full --show-leak-kinds=all --error-exitcode=1"\n # Looking for vulnerabilities\n run: |\n cargo test\n
dataset_sample\yaml\tracel-ai_burn\.github\workflows\valgrind.yml
valgrind.yml
YAML
704
0.8
0.032258
0.043478
node-utils
928
2025-04-23T15:39:57.834676
BSD-3-Clause
false
47aee014038112f8798aafb0e918c728
name: vulnerabilities\n\non:\n schedule:\n - cron: '0 21 * * WED' # Run every Wednesday at 21:00 (UTC)\n push:\n tags:\n - 'v*.*.*' # Run when a new version is being published\n\nenv:\n #\n # Dependency versioning\n #\n\n # careful version\n CAREFUL_VERSION: "0.4.0"\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n cargo-careful:\n\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Install Rust nightly\n uses: dtolnay/rust-toolchain@nightly\n with:\n toolchain: nightly\n components: rustfmt, rust-src\n\n - name: Install llvmpipe and lavapipe\n uses: tracel-ai/github-actions/setup-llvmpipe-lavapipe@v1\n\n - name: Install cargo-careful\n env:\n CAREFUL_LINK: https://github.com/RalfJung/cargo-careful/releases/download\n run: |\n curl -L "$CAREFUL_LINK/v$CAREFUL_VERSION/cargo-careful.x86_64-unknown-linux-musl" \\n --output $HOME/.cargo/bin/cargo-careful\n chmod +x $HOME/.cargo/bin/cargo-careful\n\n - name: Run cargo-careful\n # Looking for undefined behaviours\n run: cargo +nightly careful test\n\n address-sanitizer:\n\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Install Rust nightly\n uses: dtolnay/rust-toolchain@nightly\n with:\n toolchain: nightly\n components: rustfmt, rust-src\n\n - name: Install llvmpipe and lavapipe\n uses: tracel-ai/github-actions/setup-llvmpipe-lavapipe@v1\n\n - name: Run AddressSanitizer\n env:\n RUSTFLAGS: -Zsanitizer=address -Copt-level=3\n RUSTDOCFLAGS: -Zsanitizer=address\n # Looking for memory vulnerabilities\n run: cargo test -Zbuild-std --target x86_64-unknown-linux-gnu -- --nocapture\n\n thread-sanitizer:\n\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Install Rust nightly\n uses: dtolnay/rust-toolchain@nightly\n with:\n toolchain: nightly\n components: rustfmt, rust-src\n\n - name: Install llvmpipe and lavapipe\n uses: tracel-ai/github-actions/setup-llvmpipe-lavapipe@v1\n\n - name: Run ThreadSanitizer\n env:\n RUSTFLAGS: -Zsanitizer=thread -Copt-level=3\n RUSTDOCFLAGS: -Zsanitizer=thread\n # Looking for data race among threads\n run: cargo test -Zbuild-std --target x86_64-unknown-linux-gnu -- --nocapture\n\n memory-sanitizer:\n\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Install Rust nightly\n uses: dtolnay/rust-toolchain@nightly\n with:\n toolchain: nightly\n components: rustfmt, rust-src\n\n - name: Install llvmpipe and lavapipe\n uses: tracel-ai/github-actions/setup-llvmpipe-lavapipe@v1\n\n - name: Run MemorySanitizer\n env:\n RUSTFLAGS: -Zsanitizer=memory -Zsanitizer-memory-track-origins -Copt-level=3\n RUSTDOCFLAGS: -Zsanitizer=memory -Zsanitizer-memory-track-origins\n # Looking for unitialized memory.\n run: cargo test -Zbuild-std --target x86_64-unknown-linux-gnu -- --nocapture\n\n safe-stack:\n\n runs-on: ubuntu-latest\n\n steps:\n - uses: actions/checkout@v4\n\n - name: Install Rust nightly\n uses: dtolnay/rust-toolchain@nightly\n with:\n toolchain: nightly\n components: rustfmt, rust-src\n\n - name: Install llvmpipe and lavapipe\n uses: tracel-ai/github-actions/setup-llvmpipe-lavapipe@v1\n\n - name: Run SafeStack\n env:\n RUSTFLAGS: -Zsanitizer=safestack -Copt-level=3\n RUSTDOCFLAGS: -Zsanitizer=safestack\n # Provides backward edge control flow protection\n run: cargo test -Zbuild-std --target x86_64-unknown-linux-gnu -- --nocapture\n
dataset_sample\yaml\tracel-ai_burn\.github\workflows\vulnerabilities.yml
vulnerabilities.yml
YAML
3,700
0.8
0.028369
0.084906
vue-tools
608
2023-12-21T14:05:29.316084
MIT
false
e030e9abc1b7287ed546bdae2be19965
version: "2"\n\nformatters:\n enable:\n - gci\n - gofumpt\n exclusions:\n generated: lax\n paths:\n - pkg/provider/kubernetes/crd/generated/\n\nlinters:\n default: all\n disable:\n - bodyclose # too many false-positive\n - containedctx # too many false-positive\n - contextcheck # too many false-positive\n - cyclop # duplicate of gocyclo\n - dupl # Too strict\n - err113 # Too strict\n - exhaustive # Not relevant\n - exhaustruct # Not relevant\n - forcetypeassert # Too strict\n - gochecknoglobals\n - gochecknoinits\n - gocognit # Too strict\n - gocyclo # FIXME must be fixed\n - gosec # Too strict\n - gosmopolitan # not relevant\n - ireturn # Not relevant\n - lll # Not relevant\n - maintidx # kind of duplicate of gocyclo\n - makezero # Not relevant\n - mnd # Too strict\n - nestif # Too many false-positive.\n - nilnil # Not relevant\n - nlreturn # Not relevant\n - noctx # Too strict\n - nonamedreturns # Too strict\n - paralleltest # Not relevant\n - prealloc # Too many false-positive.\n - rowserrcheck # not relevant (SQL)\n - sqlclosecheck # not relevant (SQL)\n - tagliatelle # Too strict\n - testpackage # Too strict\n - tparallel # Not relevant\n - varnamelen # Not relevant\n - wrapcheck # Too strict\n - wsl # Too strict\n\n settings:\n depguard:\n rules:\n main:\n deny:\n - pkg: github.com/instana/testify\n desc: not allowed\n - pkg: github.com/pkg/errors\n desc: Should be replaced by standard lib errors package\n errcheck:\n exclude-functions:\n - fmt.Fprintln\n forbidigo:\n forbid:\n - pattern: ^print(ln)?$\n - pattern: ^spew\.Print(f|ln)?$\n - pattern: ^spew\.Dump$\n funlen:\n lines: -1\n statements: 120\n goconst:\n min-len: 3\n min-occurrences: 4\n gocyclo:\n min-complexity: 14\n godox:\n keywords:\n - FIXME\n gomoddirectives:\n toolchain-pattern: go1\.\d+\.\d+$\n tool-forbidden: true\n go-version-pattern: ^1\.\d+(\.0)?$\n replace-allow-list:\n - github.com/abbot/go-http-auth\n - github.com/gorilla/mux\n - github.com/mailgun/minheap\n - github.com/mailgun/multibuf\n - github.com/jaguilar/vt100\n - github.com/cucumber/godog\n govet:\n enable-all: true\n disable:\n - shadow\n - fieldalignment\n importas:\n no-unaliased: true\n alias:\n - pkg: github.com/docker/compose/v2/pkg/api\n alias: composeapi\n\n # Standard Kubernetes rewrites:\n - pkg: k8s.io/api/core/v1\n alias: corev1\n - pkg: k8s.io/api/networking/v1\n alias: netv1\n - pkg: k8s.io/api/networking/v1beta1\n alias: netv1beta1\n - pkg: k8s.io/api/admission/v1\n alias: admv1\n - pkg: k8s.io/api/admission/v1beta1\n alias: admv1beta1\n - pkg: k8s.io/api/extensions/v1beta1\n alias: extv1beta1\n - pkg: k8s.io/apimachinery/pkg/apis/meta/v1\n alias: metav1\n - pkg: k8s.io/apimachinery/pkg/types\n alias: ktypes\n - pkg: k8s.io/apimachinery/pkg/api/errors\n alias: kerror\n - pkg: k8s.io/client-go/kubernetes\n alias: kclientset\n - pkg: k8s.io/client-go/informers\n alias: kinformers\n - pkg: k8s.io/client-go/testing\n alias: ktesting\n - pkg: k8s.io/apimachinery/pkg/runtime/schema\n alias: kschema\n - pkg: k8s.io/client-go/kubernetes/scheme\n alias: kscheme\n - pkg: k8s.io/apimachinery/pkg/version\n alias: kversion\n - pkg: k8s.io/client-go/kubernetes/fake\n alias: kubefake\n - pkg: k8s.io/client-go/discovery/fake\n alias: discoveryfake\n\n # Kubernetes Gateway rewrites:\n - pkg: sigs.k8s.io/gateway-api/pkg/client/clientset/gateway/versioned\n alias: gateclientset\n - pkg: sigs.k8s.io/gateway-api/pkg/client/informers/gateway/externalversions\n alias: gateinformers\n - pkg: sigs.k8s.io/gateway-api/apis/v1alpha2\n alias: gatev1alpha2\n\n # Traefik Kubernetes rewrites:\n - pkg: github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd/traefikio/v1alpha1\n alias: traefikv1alpha1\n - pkg: github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd/generated/clientset/versioned\n alias: traefikclientset\n - pkg: github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd/generated/informers/externalversions\n alias: traefikinformers\n - pkg: github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd/generated/clientset/versioned/scheme\n alias: traefikscheme\n - pkg: github.com/traefik/traefik/v3/pkg/provider/kubernetes/crd/generated/clientset/versioned/fake\n alias: traefikcrdfake\n misspell:\n locale: US\n revive:\n rules:\n - name: struct-tag\n - name: blank-imports\n - name: context-as-argument\n - name: context-keys-type\n - name: dot-imports\n - name: error-return\n - name: error-strings\n - name: error-naming\n - name: exported\n disabled: true\n - name: if-return\n - name: increment-decrement\n - name: var-naming\n - name: var-declaration\n - name: package-comments\n disabled: true\n - name: range\n - name: receiver-naming\n - name: time-naming\n - name: unexported-return\n - name: indent-error-flow\n - name: errorf\n - name: empty-block\n - name: superfluous-else\n - name: unused-parameter\n disabled: true\n - name: unreachable-code\n - name: redefines-builtin-id\n tagalign:\n align: false\n sort: true\n order:\n - description\n - json\n - toml\n - yaml\n - yml\n - label\n - label-slice-as-struct\n - file\n - kv\n - export\n testifylint:\n disable:\n - suite-dont-use-pkg\n - require-error\n - go-require\n perfsprint:\n err-error: true\n errorf: true\n sprintf1: true\n strconcat: false\n staticcheck:\n checks:\n - all\n - '-SA1019'\n - '-ST1000'\n - '-ST1003'\n - '-ST1016'\n - '-ST1020'\n - '-ST1021'\n - '-ST1022'\n - '-QF1001'\n - '-QF1008' # TODO must be fixed\n\n exclusions:\n generated: lax\n presets:\n - comments\n - std-error-handling\n rules:\n - path: (.+)_test.go\n linters:\n - canonicalheader\n - fatcontext\n - funlen\n - goconst\n - godot\n - path: (.+)_test.go\n text: ' always receives '\n linters:\n - unparam\n - path: pkg/server/service/bufferpool.go\n text: 'SA6002: argument should be pointer-like to avoid allocations'\n - path: pkg/server/middleware/middlewares.go\n text: Function 'buildConstructor' has too many statements\n linters:\n - funlen\n - path: pkg/tracing/haystack/logger.go\n linters:\n - goprintffuncname\n - path: pkg/tracing/tracing.go\n text: printf-like formatting function 'SetErrorWithEvent' should be named 'SetErrorWithEventf'\n linters:\n - goprintffuncname\n - path: pkg/tls/tlsmanager_test.go\n text: 'SA1019: config.ClientCAs.Subjects has been deprecated since Go 1.18'\n - path: pkg/types/tls_test.go\n text: 'SA1019: tlsConfig.RootCAs.Subjects has been deprecated since Go 1.18'\n - path: pkg/provider/kubernetes/(crd|gateway)/client.go\n linters:\n - interfacebloat\n - path: pkg/metrics/metrics.go\n linters:\n - interfacebloat\n - path: integration/healthcheck_test.go\n text: Duplicate words \(wsp2,\) found\n linters:\n - dupword\n - path: pkg/types/domain_test.go\n text: Duplicate words \(sub\) found\n linters:\n - dupword\n - path: pkg/provider/kubernetes/gateway/client_mock_test.go\n text: 'unusedwrite: unused write to field'\n linters:\n - govet\n - path: pkg/provider/acme/local_store.go\n linters:\n - musttag\n - path: pkg/tls/certificate.go\n text: the methods of "Certificates" use pointer receiver and non-pointer receiver.\n linters:\n - recvcheck\n - path: pkg/config/static/static_config.go\n source: 'errors.New\("Consul Catalog provider'\n text: 'ST1005: error strings should not be capitalized'\n - path: pkg/config/static/static_config.go\n source: 'errors.New\("Consul provider'\n text: 'ST1005: error strings should not be capitalized'\n - path: pkg/config/static/static_config.go\n source: 'errors.New\("Nomad provider'\n text: 'ST1005: error strings should not be capitalized'\n - path: (.+)\.go\n text: 'struct-tag: unknown option ''inline'' in JSON tag'\n linters:\n - revive\n - path: (.+)\.go\n text: 'struct-tag: unknown option ''omitzero'' in TOML tag'\n linters:\n - revive\n - path: (.+)\.go$\n text: 'SA1019: http.CloseNotifier has been deprecated' # FIXME must be fixed\n - path: (.+)\.go$\n text: 'SA1019: cfg.(SSLRedirect|SSLTemporaryRedirect|SSLHost|SSLForceHost|FeaturePolicy) is deprecated'\n - path: (.+)\.go$\n text: 'SA1019: c.Providers.(ConsulCatalog|Consul|Nomad).Namespace is deprecated'\n - path: (.+)\.go$\n text: 'SA1019: dockertypes.ContainerNode is deprecated'\n - path: pkg/provider/kubernetes/crd/kubernetes.go\n text: "Function 'loadConfigurationFromCRD' has too many statements"\n linters:\n - funlen\n - path: pkg/plugins/middlewarewasm.go\n text: 'the methods of "wasmMiddlewareBuilder" use pointer receiver and non-pointer receiver.'\n linters:\n - recvcheck\n - path: pkg/proxy/httputil/bufferpool.go\n text: 'SA6002: argument should be pointer-like to avoid allocations'\n paths:\n - pkg/provider/kubernetes/crd/generated/\n\nissues:\n max-issues-per-linter: 0\n max-same-issues: 0\n
dataset_sample\yaml\traefik_traefik\.golangci.yml
.golangci.yml
YAML
10,225
0.95
0.006173
0.009494
vue-tools
315
2024-03-19T12:17:45.285950
Apache-2.0
false
db422aae644fed84fbc79e5af5941d48
name: Bug report\ndescription: Problems with the software\ntitle: '[Bug] '\nlabels: ['bug']\nbody:\n - type: markdown\n attributes:\n value: |\n Thank you very much for your feedback!\n\n 有关讨论、建议或者咨询的内容请去往[讨论区](https://github.com/tw93/Pake/discussions)。\n\n For suggestions or help, please consider using [Github Discussion](https://github.com/tw93/Pake/discussions) instead.\n - type: checkboxes\n attributes:\n label: Search before asking\n description: >\n 🙊 辛苦提 bug 前,去找一下 [历史](https://github.com/tw93/Pake/issues?q=) 是否有提。辛苦提供系统版本、录屏或者截图、复现路径,期待解决的点——这几个说明能帮助我更好的解决问题,此外假如是讨论,建议辛苦去 [Discussions](https://github.com/tw93/Pake/discussions) 看看是否有类似的讨论。\n\n 🙊 Check out [Issues](https://github.com/tw93/Pake/issues?q=) before reporting. Please provide your system version, screencasts, screenshots, way to reproduce, and the expected result – helpful for me to understand and fix up this issue! Besides, for suggestions or something else, head to [Pake's Discussions Platform](https://github.com/tw93/Pake/discussions).\n options:\n - label: >\n 我在 [issues](https://github.com/tw93/Pake/issues?q=) 列表中搜索,没有找到类似的内容。\n\n I searched in the [issues](https://github.com/tw93/Pake/issues?q=) and found nothing similar.\n required: true\n - type: textarea\n attributes:\n label: Pake version\n description: >\n Please provide the version of Pake you are using. If you are using the main/dev branch, please provide the commit id.\n validations:\n required: true\n - type: textarea\n attributes:\n label: System version\n description: >\n Please provide the version of System you are using.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Node.js version\n description: >\n Please provide the Node.js version.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Minimal reproduce step\n description: Please try to give reproducing steps to facilitate quick location of the problem.\n validations:\n required: true\n - type: textarea\n attributes:\n label: What did you expect to see?\n validations:\n required: true\n - type: textarea\n attributes:\n label: What did you see instead?\n validations:\n required: true\n - type: textarea\n attributes:\n label: Anything else?\n - type: checkboxes\n attributes:\n label: Are you willing to submit a PR?\n description: >\n We look forward to the community of developers or users helping solve Pake problems together. If you are willing to submit a PR to fix this problem, please check the box.\n options:\n - label: I'm willing to submit a PR!\n - type: markdown\n attributes:\n value: 'Thanks for completing our form!'\n
dataset_sample\yaml\tw93_Pake\.github\ISSUE_TEMPLATE\bug-report.yml
bug-report.yml
YAML
3,083
0.95
0.065789
0
node-utils
388
2023-10-21T21:14:56.500602
BSD-3-Clause
false
98db29d3e90b875b3c5b1cf0f4efc9ff
blank_issues_enabled: false\ncontact_links:\n - name: Ask a question or get support\n url: https://github.com/tw93/Pake/discussions/categories/q-a\n about: Ask a question or request support for Pake\n
dataset_sample\yaml\tw93_Pake\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
202
0.8
0.2
0
react-lib
736
2024-02-08T14:31:56.850899
Apache-2.0
false
fffc8b605dca21c718ddcc6f85519a4b
name: Feature\ndescription: Add new feature, improve code, and more\nlabels: ['enhancement']\nbody:\n - type: markdown\n attributes:\n value: |\n Thank you very much for your feature proposal!\n - type: checkboxes\n attributes:\n label: Search before asking\n description: >\n Please search [issues](https://github.com/tw93/Pake/issues?q=) to check if your issue has already been reported.\n options:\n - label: >\n 我在 [issues](https://github.com/tw93/Pake/issues?q=) 列表中搜索,没有找到类似的内容。\n\n I searched in the [issues](https://github.com/tw93/Pake/issues?q=) and found nothing similar.\n required: true\n - type: textarea\n attributes:\n label: Motivation\n description: Describe the motivations for this feature, like how it fixes the problem you meet.\n validations:\n required: true\n - type: textarea\n attributes:\n label: Solution\n description: Describe the proposed solution and add related materials like links if any.\n - type: textarea\n attributes:\n label: Alternatives\n description: Describe other alternative solutions or features you considered, but rejected.\n - type: textarea\n attributes:\n label: Anything else?\n - type: checkboxes\n attributes:\n label: Are you willing to submit a PR?\n description: >\n We look forward to the community of developers or users helping develop Pake features together. If you are willing to submit a PR to implement the feature, please check the box.\n options:\n - label: I'm willing to submit a PR!\n - type: markdown\n attributes:\n value: 'Thanks for completing our form!'\n
dataset_sample\yaml\tw93_Pake\.github\ISSUE_TEMPLATE\feature.yml
feature.yml
YAML
1,702
0.95
0.108696
0
awesome-app
721
2023-12-27T16:01:21.198928
Apache-2.0
false
d1ec0a910359db7c42c43e05f43967dc
name: Build Contribute List\non:\n push:\n branches:\n - main\n\njobs:\n contrib-readme-job:\n runs-on: ubuntu-latest\n name: A job to automate contrib in readme\n steps:\n - name: Contribute List\n uses: akhilmhdh/[email protected]\n with:\n image_size: 90\n columns_per_row: 7\n env:\n GITHUB_TOKEN: ${{ secrets.TOKEN }}\n
dataset_sample\yaml\tw93_Pake\.github\workflows\contribute_list.yml
contribute_list.yml
YAML
394
0.7
0
0
react-lib
224
2024-08-31T13:19:27.096521
GPL-3.0
false
3e41b791705b89a3bd63e09ae5e4e48a
name: Build and Publish Docker Image\n\non:\n workflow_dispatch: # Manual\n\nenv:\n REGISTRY: ghcr.io\n IMAGE_NAME: ${{ github.repository }}\n\njobs:\n build-and-push-image:\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n packages: write\n\n steps:\n - name: Checkout repository\n uses: actions/checkout@v3\n\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v2\n\n - name: Log in to the Container registry\n uses: docker/login-action@v2\n with:\n registry: ${{ env.REGISTRY }}\n username: ${{ github.actor }}\n password: ${{ secrets.GITHUB_TOKEN }}\n\n - name: Extract metadata (tags, labels) for Docker\n id: meta\n uses: docker/metadata-action@v4\n with:\n images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}\n tags: |\n type=raw,value=latest,enable={{is_default_branch}}\n type=sha\n\n - name: Build and push Docker image\n uses: docker/build-push-action@v4\n with:\n context: .\n push: true\n tags: ${{ steps.meta.outputs.tags }}\n labels: ${{ steps.meta.outputs.labels }}\n cache-from: type=gha\n cache-to: type=gha,mode=max\n platforms: linux/amd64\n
dataset_sample\yaml\tw93_Pake\.github\workflows\docker-publish.yml
docker-publish.yml
YAML
1,274
0.8
0.020408
0
react-lib
520
2024-04-19T15:55:38.330673
BSD-3-Clause
false
77c072dd4dda4af607420539812aac88
name: Check EditorConfig\n\non:\n push:\n pull_request:\n workflow_dispatch:\n\npermissions:\n actions: write\n contents: read\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n editorconfig-check:\n name: Run EditorConfig Check\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n - uses: editorconfig-checker/action-editorconfig-checker@main\n - run: editorconfig-checker -config .ecrc.json\n
dataset_sample\yaml\tw93_Pake\.github\workflows\editorconfig-check.yml
editorconfig-check.yml
YAML
469
0.7
0
0
vue-tools
572
2023-07-22T00:15:53.224524
MIT
false
a2df991c3636d163db0d2297f22d27ca
name: Check Rust Code\n\non:\n push:\n pull_request:\n workflow_dispatch:\n\npermissions:\n actions: write\n contents: read\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\ndefaults:\n run:\n shell: bash\n working-directory: src-tauri\n\njobs:\n cargo-test:\n name: Test codebase on ${{ matrix.os }} (cargo test)\n runs-on: ${{ matrix.os }}\n strategy:\n matrix:\n os:\n - windows-latest\n - ubuntu-latest\n - macos-latest\n fail-fast: false\n steps:\n - uses: actions/checkout@v3\n - uses: actions-rust-lang/setup-rust-toolchain@v1\n - uses: rui314/setup-mold@v1\n - uses: taiki-e/install-action@v1\n with:\n tool: cargo-hack,nextest\n - name: Install dependencies for Ubuntu\n if: matrix.os == 'ubuntu-latest'\n uses: awalsh128/[email protected]\n with:\n packages: libdbus-1-dev libsoup3.0-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev gnome-video-effects gnome-video-effects-extra\n version: 1.0\n - name: Run unit & integration tests with nextest\n run: cargo hack --feature-powerset --exclude-features cli-build nextest run --no-tests=pass\n\n cargo-clippy:\n name: Check codebase quality (cargo clippy)\n runs-on: ${{ matrix.os }}\n strategy:\n matrix:\n os:\n - windows-latest\n - ubuntu-latest\n - macos-latest\n fail-fast: false\n steps:\n - uses: actions/checkout@v3\n - uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n components: clippy\n - uses: taiki-e/install-action@cargo-hack\n - name: Install dependencies for Ubuntu\n if: matrix.os == 'ubuntu-latest'\n uses: awalsh128/[email protected]\n with:\n packages: libdbus-1-dev libsoup3.0-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.1-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev gnome-video-effects gnome-video-effects-extra\n version: 1.0\n - name: Run all-features code quality checks\n run: cargo hack --feature-powerset --exclude-features cli-build --no-dev-deps clippy\n - name: Run normal code quality check\n run: cargo clippy\n\n cargo-fmt:\n name: Enforce codebase style (cargo fmt)\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v3\n - uses: actions-rust-lang/setup-rust-toolchain@v1\n with:\n components: rustfmt\n - run: cargo fmt --all -- --color=always --check\n
dataset_sample\yaml\tw93_Pake\.github\workflows\rust-code-quality-check.yml
rust-code-quality-check.yml
YAML
2,682
0.7
0.048193
0
node-utils
391
2025-03-11T22:52:55.153716
BSD-3-Clause
false
27322d8ae229dd2b982ae73d4e7326e3
version: '2'\nrun:\n go: '1.24'\nlinters:\n enable:\n - asciicheck\n - bidichk\n - bodyclose\n - canonicalheader\n - containedctx\n - copyloopvar\n - decorder\n - dogsled\n - dupword\n - durationcheck\n - err113\n - errchkjson\n - errname\n - errorlint\n - exptostd\n - fatcontext\n - forbidigo\n - forcetypeassert\n - funcorder\n - gocheckcompilerdirectives\n - gochecksumtype\n - gocritic\n - godot\n - gomodguard\n - goprintffuncname\n - gosmopolitan\n - grouper\n - iface\n - importas\n - inamedparam\n - interfacebloat\n - intrange\n - loggercheck\n - makezero\n - mirror\n - misspell\n - nilerr\n - nilnesserr\n - noctx\n - nolintlint\n - nosprintfhostport\n - perfsprint\n - prealloc\n - predeclared\n - promlinter\n - protogetter\n - reassign\n - revive\n - rowserrcheck\n - sloglint\n - spancheck\n - sqlclosecheck\n - staticcheck\n - tagalign\n - tagliatelle\n - testableexamples\n - testifylint\n - thelper\n - unconvert\n - unparam\n - usestdlibvars\n - usetesting\n - wastedassign\n - whitespace\n - zerologlint\n disable:\n - asasalint\n - contextcheck\n - cyclop\n - depguard\n - dupl\n - exhaustive\n - exhaustruct\n - funlen\n - ginkgolinter\n - gochecknoglobals\n - gochecknoinits\n - gocognit\n - goconst\n - gocyclo\n - godox\n - goheader\n - gomoddirectives\n - gosec\n - ireturn\n - lll\n - maintidx\n - musttag\n - nakedret\n - nestif\n - nilnil\n - nlreturn\n - nonamedreturns\n - paralleltest\n - recvcheck\n - testpackage\n - tparallel\n - varnamelen\n - wrapcheck\n - wsl\n settings:\n forbidigo:\n forbid:\n - pattern: ^archive/zip\.\n - pattern: ^compress/gzip\.\n - pattern: ^fmt\.Print.*$\n - pattern: ^ioutil\..*$\n - pattern: ^os\.(DirEntry|ErrExist|ErrNotExist|FileInfo|FileMode|Is.*|Mode.*)$\n gocritic:\n enable-all: true\n disabled-checks:\n - emptyFallthrough\n - hugeParam\n - rangeValCopy\n - unnamedResult\n - whyNoLint\n govet:\n disable:\n - fieldalignment\n - shadow\n enable-all: true\n misspell:\n locale: US\n revive:\n enable-all-rules: true\n rules:\n - name: add-constant\n disabled: true\n - name: cognitive-complexity\n disabled: true\n - name: cyclomatic\n disabled: true\n - name: empty-block\n disabled: true\n - name: exported\n disabled: true\n - name: filename-format\n arguments:\n - ^[a-z][-0-9_a-z]*(?:\.gen)?\.go$\n - name: flag-parameter\n disabled: true\n - name: function-length\n disabled: true\n - name: function-result-limit\n disabled: true\n - name: import-shadowing\n disabled: true\n - name: line-length-limit\n disabled: true\n - name: max-control-nesting\n disabled: true\n - name: max-public-structs\n disabled: true\n - name: nested-structs\n disabled: true\n - name: unused-parameter\n disabled: true\n - name: unused-receiver\n disabled: true\n staticcheck:\n checks:\n - all\n exclusions:\n generated: lax\n presets:\n - common-false-positives\n - legacy\n - std-error-handling\n rules:\n - linters:\n - err113\n text: do not define dynamic errors, use wrapped static errors instead\n - linters:\n - forbidigo\n path: ^internal/cmds/\n - linters:\n - forcetypeassert\n path: _test\.go$\n - linters:\n - forbidigo\n path: assets/scripts/generate-commit.go\nformatters:\n enable:\n - gci\n - gofmt\n - gofumpt\n - goimports\n - golines\n settings:\n gci:\n sections:\n - standard\n - default\n - prefix(github.com/twpayne/chezmoi)\n gofumpt:\n module-path: github.com/twpayne/chezmoi\n extra-rules: true\n goimports:\n local-prefixes:\n - github.com/twpayne/chezmoi\n golines:\n max-len: 128\n tab-len: 4\n
dataset_sample\yaml\twpayne_chezmoi\.golangci.yml
.golangci.yml
YAML
3,845
0.85
0.009615
0
node-utils
409
2025-02-25T07:45:49.080549
MIT
false
f450bea0de85f6ae5e4b136e95c7366e
version: 2\nupdates:\n- package-ecosystem: gomod\n directory: /\n schedule:\n interval: monthly\n labels:\n - enhancement\n\n groups:\n go-dev:\n dependency-type: development\n patterns:\n - '*'\n update-types: [minor, patch]\n\n go-prod:\n dependency-type: production\n patterns:\n - '*'\n update-types: [minor, patch]\n\n- package-ecosystem: github-actions\n directory: /\n schedule:\n interval: monthly\n labels:\n - enhancement\n\n groups:\n actions:\n patterns:\n - '*'\n update-types: [minor, patch]\n\n- package-ecosystem: pip\n directory: /assets\n schedule:\n interval: monthly\n labels:\n - enhancement\n groups:\n python:\n patterns:\n - '*'\n update-types: [minor, patch]\n
dataset_sample\yaml\twpayne_chezmoi\.github\dependabot.yml
dependabot.yml
YAML
745
0.7
0
0
awesome-app
950
2023-11-21T22:15:12.318178
BSD-3-Clause
false
e6dbd510211453733cfb9938c7e2c6f0
name: setup-go\ndescription: Set up Go environment and enable caching\ninputs:\n cache-prefix:\n description: Cache prefix\n default: cache-go\n required: false\n go-version:\n description: Go version to set up\n required: true\n upload-cache:\n description: Upload cache or only restore\n default: 'true'\n required: false\nruns:\n using: composite\n steps:\n - name: setup-go-env\n shell: bash\n run: |\n if [ "$RUNNER_OS" = "Windows" ]; then\n echo "GOCACHE=D:\\golang\\cache" >> $GITHUB_ENV\n echo "GOMODCACHE=D:\\golang\\modcache" >> $GITHUB_ENV\n echo "GOPATH=D:\\golang\\go" >> $GITHUB_ENV\n echo "USERPROFILE=D:\\homedir" >> $GITHUB_ENV\n elif [ "$RUNNER_OS" = "macOS" ]; then\n echo "GOCACHE=/Users/runner/go/pkg/mod" >> $GITHUB_ENV\n echo "GOMODCACHE=/Users/runner/Library/Caches/go-build" >> $GITHUB_ENV\n else\n echo "GOCACHE=/home/runner/go/pkg/mod" >> $GITHUB_ENV\n echo "GOMODCACHE=/home/runner/.cache/go-build" >> $GITHUB_ENV\n fi\n - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684\n if: ${{ inputs.upload-cache == 'true' }}\n with:\n path: |\n ${{ env.GOCACHE }}\n ${{ env.GOMODCACHE }}\n key: ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ runner.arch }}-go-${{ inputs.go-version }}-${{ hashFiles('**/go.sum') }}\n restore-keys: |\n ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ runner.arch }}-go-${{ inputs.go-version }}-\n - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684\n if: ${{ inputs.upload-cache != 'true' }}\n with:\n path: |\n ${{ env.GOCACHE }}\n ${{ env.GOMODCACHE }}\n key: ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ runner.arch }}-go-${{ inputs.go-version }}-${{ hashFiles('**/go.sum') }}\n restore-keys: |\n ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ runner.arch }}-go-${{ inputs.go-version }}-\n - uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b\n with:\n cache: false\n go-version: ${{ inputs.go-version }}\n
dataset_sample\yaml\twpayne_chezmoi\.github\actions\setup-go\action.yml
action.yml
YAML
2,066
0.85
0.055556
0
node-utils
35
2025-05-22T16:23:59.557184
BSD-3-Clause
false
d1f7510bed29eadd4aa809444b68b2b0
name: clear-pr-caches\n\non:\n pull_request_target:\n types:\n - closed\n\npermissions:\n actions: write\n\njobs:\n clear-caches:\n runs-on: ubuntu-24.04\n steps:\n - name: clear-caches\n env:\n GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n GH_REPO: ${{ github.repository }}\n BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge\n run: |\n cacheKeysForPR=$(gh cache list --ref "$BRANCH" --limit 100 --json id --jq '.[].id')\n set +e\n for cacheKey in $cacheKeysForPR; do\n gh cache delete "$cacheKey"\n done\n
dataset_sample\yaml\twpayne_chezmoi\.github\workflows\clear-pr-caches.yml
clear-pr-caches.yml
YAML
576
0.7
0.04
0
react-lib
827
2023-09-15T21:26:04.192120
BSD-3-Clause
false
3ae6b292d74e0ff827c2f4729b7e3f7a
name: govulncheck\non:\n pull_request:\n branches:\n - master\n push:\n branches:\n - master\n tags:\n - v*\n schedule:\n - cron: 2 2 * * *\nconcurrency:\n group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n cancel-in-progress: true\njobs:\n govulncheck:\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - name: go-version\n id: go-version\n run: |\n echo go-version="$(awk '/GO_VERSION:/ { print $2 }' .github/workflows/main.yml | tr -d \')" >> "${GITHUB_OUTPUT}"\n - uses: ./.github/actions/setup-go\n with:\n go-version: ${{ steps.go-version.outputs.go-version }}\n upload-cache: false\n - uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee\n with:\n cache: false\n go-version-input: ${{ steps.go-version.outputs.go-version }}\n
dataset_sample\yaml\twpayne_chezmoi\.github\workflows\govulncheck.yml
govulncheck.yml
YAML
945
0.7
0
0
vue-tools
903
2024-01-03T09:31:25.403956
MIT
false
7f52d0479dbaf1310335a412384caa10
name: installer\non:\n pull_request:\n branches:\n - master\n push:\n branches:\n - master\nconcurrency:\n group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n cancel-in-progress: true\nenv:\n SHA: ${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }}\njobs:\n changes:\n runs-on: ubuntu-22.04\n outputs:\n sh: ${{ steps.filter.outputs.sh }}\n ps1: ${{ steps.filter.outputs.ps1 }}\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - id: filter\n uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36\n with:\n filters: |\n shared: &shared\n - '.github/workflows/installer.yml'\n sh:\n - *shared\n - 'assets/scripts/install*.sh'\n - 'internal/cmds/generate-install.sh/install.sh.tmpl'\n ps1:\n - *shared\n - 'assets/scripts/install.ps1'\n misspell:\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: reviewdog/action-misspell@9daa94af4357dddb6fd3775de806bc0a8e98d3e4\n with:\n locale: US\n test-install-sh:\n if: ${{ needs.changes.outputs.sh == 'true' }}\n strategy:\n matrix:\n os:\n - macos-13\n - ubuntu-22.04\n - windows-2022\n needs: changes\n runs-on: ${{ matrix.os }}\n env:\n BINARY: ${{ matrix.os == 'windows-2022' && 'bin/chezmoi.exe' || 'bin/chezmoi' }}\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - name: test-${{ matrix.os }}-local\n shell: bash\n run: |\n rm -f ${{ env.BINARY }}\n sh assets/scripts/install.sh -d\n ${{ env.BINARY }} --version\n - name: test-${{ matrix.os }}-url\n shell: bash\n run: |\n rm -f ${{ env.BINARY }}\n sh -c "$(curl -fsLS https://raw.githubusercontent.com/twpayne/chezmoi/${{ env.SHA }}/assets/scripts/install.sh)" -- -d\n ${{ env.BINARY }} --version\n test-install-ps1:\n if: ${{ needs.changes.outputs.ps1 == 'true' }}\n strategy:\n matrix:\n os:\n - macos-13\n - ubuntu-22.04\n - windows-2022\n needs: changes\n runs-on: ${{ matrix.os }}\n env:\n BINARY: ${{ matrix.os == 'windows-2022' && 'bin/chezmoi.exe' || 'bin/chezmoi' }}\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - name: test-${{ matrix.os }}-local-pwsh\n shell: pwsh\n run: |\n if (Test-Path -Path ${{ env.BINARY }}) { Remove-Item -Force ${{ env.BINARY }} }\n assets/scripts/install.ps1 -d\n ${{ env.BINARY }} --version\n - name: test-${{ matrix.os }}-local-powershell\n if: matrix.os == 'windows-2022'\n shell: powershell\n run: |\n if (Test-Path -Path ${{ env.BINARY }}) { Remove-Item -Force ${{ env.BINARY }} }\n assets/scripts/install.ps1 -d\n ${{ env.BINARY }} --version\n - name: test-${{ matrix.os }}-url-pwsh\n shell: pwsh\n run: |\n if (Test-Path -Path ${{ env.BINARY }}) { Remove-Item -Force ${{ env.BINARY }} }\n iex "&{$(irm 'https://raw.githubusercontent.com/twpayne/chezmoi/${{ env.SHA }}/assets/scripts/install.ps1')} -d"\n ${{ env.BINARY }} --version\n - name: test-${{ matrix.os }}-url-powershell\n if: matrix.os == 'windows-2022'\n shell: powershell\n run: |\n if (Test-Path -Path ${{ env.BINARY }}) { Remove-Item -Force ${{ env.BINARY }} }\n iex "&{$(irm 'https://raw.githubusercontent.com/twpayne/chezmoi/${{ env.SHA }}/assets/scripts/install.ps1')} -d"\n ${{ env.BINARY }} --version\n
dataset_sample\yaml\twpayne_chezmoi\.github\workflows\installer.yml
installer.yml
YAML
3,715
0.8
0.072072
0
python-kit
9
2024-10-05T20:08:57.815177
Apache-2.0
false
a07cf5a30ab84c4ff7f12ad8ae591a91
name: lock-threads\n\non:\n schedule:\n - cron: 17 2 * * *\n workflow_dispatch: {}\n\npermissions:\n issues: write\n pull-requests: write\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n cancel-in-progress: true\n\njobs:\n action:\n runs-on: ubuntu-22.04\n steps:\n - uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771\n with:\n process-only: issues, prs\n issue-lock-reason: resolved\n issue-inactive-days: 28\n pr-lock-reason: resolved\n pr-inactive-days: 28\n log-output: true\n
dataset_sample\yaml\twpayne_chezmoi\.github\workflows\lock-threads.yml
lock-threads.yml
YAML
590
0.7
0
0
react-lib
402
2025-05-18T15:09:59.318965
GPL-3.0
false
3c17ac43fea38f4f25a2f0de8a6877fe
name: main\non:\n pull_request:\n branches:\n - master\n push:\n branches:\n - master\n tags:\n - v*\n schedule:\n - cron: 32 2 * * *\nconcurrency:\n group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}\n cancel-in-progress: true\nenv:\n ACTIONLINT_VERSION: 1.7.7 # https://github.com/rhysd/actionlint/releases\n AGE_VERSION: 1.2.1 # https://github.com/FiloSottile/age/releases\n CHOCOLATEY_VERSION: 2.4.3 # https://github.com/chocolatey/choco/releases\n EDITORCONFIG_CHECKER_VERSION: 3.2.1 # https://github.com/editorconfig-checker/editorconfig-checker/releases\n GO_VERSION: 1.24.2 # https://go.dev/doc/devel/release\n GOLANGCI_LINT_VERSION: 2.1.2 # https://github.com/golangci/golangci-lint/releases\n GORELEASER_VERSION: 2.8.2 # https://github.com/goreleaser/goreleaser/releases\n GOVERSIONINFO_VERSION: 1.5.0 # https://github.com/josephspurrier/goversioninfo/releases\n PYTHON_VERSION: '3.10' # https://www.python.org/downloads/\n RAGE_VERSION: 0.11.1 # https://github.com/str4d/rage/releases\n UV_VERSION: 0.6.14 # https://github.com/astral-sh/uv/releases\njobs:\n changes:\n runs-on: ubuntu-22.04\n outputs:\n code: ${{ steps.filter.outputs.code }}\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - id: filter\n uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36\n with:\n filters: |\n code:\n - '**/*.go'\n - '.github/actions/setup-go/action.yml'\n - '.github/workflows/main.yml'\n - '.goreleaser.yaml'\n - 'Makefile'\n - 'assets/**/*.tmpl'\n - 'assets/docker/**'\n - 'assets/scripts/*.py'\n - 'assets/scripts/generate-commit.go'\n - 'assets/scripts/stow-to-chezmoi.sh'\n - 'assets/vagrant/**'\n - 'completions/**'\n - 'go.*'\n - 'internal/**/!(install.sh.tmpl)'\n codeql:\n needs: changes\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n runs-on: ubuntu-22.04\n permissions:\n security-events: write\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n with:\n fetch-depth: 1\n - uses: ./.github/actions/setup-go\n with:\n go-version: ${{ env.GO_VERSION }}\n upload-cache: false\n - uses: github/codeql-action/init@efffb483ec7bb162c4b7935f8b35ab6b94136c7b\n with:\n languages: go\n - uses: github/codeql-action/analyze@efffb483ec7bb162c4b7935f8b35ab6b94136c7b\n misspell:\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: reviewdog/action-misspell@9daa94af4357dddb6fd3775de806bc0a8e98d3e4\n with:\n locale: US\n test-alpine:\n needs: changes\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684\n with:\n path: |\n ~/.go-alpine\n key: alpine-go-${{ hashFiles('**/go.sum') }}\n restore-keys: |\n alpine-go-\n - name: test\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n run: |\n export DOCKER_GOCACHE="$HOME/.go-alpine"\n ./assets/docker/test.sh alpine\n test-archlinux:\n needs: changes\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684\n with:\n path: |\n ~/.go-archlinux\n key: archlinux-go-${{ hashFiles('**/go.sum') }}\n restore-keys: |\n archlinux-go-\n - name: test\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n run: |\n export DOCKER_GOCACHE="$HOME/.go-archlinux"\n ./assets/docker/test.sh archlinux\n test-macos:\n name: test-macos-${{ matrix.test-index }}\n strategy:\n fail-fast: false\n matrix:\n test-index: [0, 1, 2, 3, 4]\n needs: changes\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n runs-on: macos-15\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: ./.github/actions/setup-go\n with:\n go-version: ${{ env.GO_VERSION }}\n - name: build\n run: |\n go build -v ./...\n - name: run\n run: |\n go run . --version\n - name: install-age\n run: |\n brew install age\n age --version\n - name: install-rage\n run: |\n brew tap str4d.xyz/rage https://str4d.xyz/rage\n brew install rage\n rage --version\n - name: install-keepassxc\n run: |\n brew install keepassxc\n keepassxc-cli --version\n - name: test\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n run: |\n if [ "${{ matrix.test-index }}" = "0" ]; then\n go test ./... -short -race\n go test ./internal/cmd -run=TestScript -filter='^[0-9a-dA-D]' -race\n elif [ "${{ matrix.test-index }}" = "1" ]; then\n go test ./internal/cmd -run=TestScript -filter='^[e-hE-H]' -race\n elif [ "${{ matrix.test-index }}" = "2" ]; then\n go test ./internal/cmd -run=TestScript -filter='^[i-lI-L]' -race\n elif [ "${{ matrix.test-index }}" = "3" ]; then\n go test ./internal/cmd -run=TestScript -filter='^[m-sM-S]' -race\n else\n go test ./internal/cmd -run=TestScript -filter='^[t-zT-Z]' -race\n fi\n test-release:\n needs: changes\n runs-on: ubuntu-22.04 # use older Ubuntu for older glibc, update minimum glibc version in install.sh.tmpl if this changes\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n with:\n fetch-depth: 0\n - uses: ./.github/actions/free-disk-space\n - uses: ./.github/actions/setup-go\n with:\n cache-prefix: release-go\n go-version: ${{ env.GO_VERSION }}\n - name: install-release-dependencies\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n run: |\n sudo apt-get --quiet update\n sudo apt-get --no-install-suggests --no-install-recommends --quiet --yes install musl-tools snapcraft\n mkdir -p /opt/chocolatey\n wget -q -O - "https://github.com/chocolatey/choco/releases/download/${CHOCOLATEY_VERSION}/chocolatey.v${CHOCOLATEY_VERSION}.tar.gz" | tar -xz -C "/opt/chocolatey"\n echo '#!/bin/bash' >> /usr/local/bin/choco\n echo 'mono /opt/chocolatey/choco.exe $@' >> /usr/local/bin/choco\n chmod +x /usr/local/bin/choco\n - name: create-syso\n run: |\n make create-syso\n - name: build-release\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552\n with:\n version: ${{ env.GORELEASER_VERSION }}\n args: release --skip=sign --snapshot --timeout=1h\n - name: upload-artifact-chezmoi-darwin-amd64\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02\n with:\n name: chezmoi-darwin-amd64\n path: dist/chezmoi-nocgo_darwin_amd64_v1/chezmoi\n - name: upload-artifact-chezmoi-darwin-arm64\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02\n with:\n name: chezmoi-darwin-arm64\n path: dist/chezmoi-nocgo_darwin_arm64_v8.0/chezmoi\n - name: upload-artifact-chezmoi-linux-amd64\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02\n with:\n name: chezmoi-linux-amd64\n path: dist/chezmoi-cgo-glibc_linux_amd64_v1/chezmoi\n - name: upload-artifact-chezmoi-linux-musl-amd64\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02\n with:\n name: chezmoi-linux-amd64-musl\n path: dist/chezmoi-cgo-musl_linux_amd64_v1/chezmoi\n - name: upload-artifact-chezmoi-windows-amd64.exe\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02\n with:\n name: chezmoi-windows-amd64\n path: dist/chezmoi-nocgo_windows_amd64_v1/chezmoi.exe\n test-ubuntu:\n name: test-ubuntu-umask${{ matrix.umask }}-${{ matrix.test-index }}\n strategy:\n fail-fast: false\n matrix:\n umask:\n - '022'\n - '002'\n test-index: [0, 1]\n needs: changes\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true' || (matrix.umask == '022' && matrix.test-index == 0)\n with:\n fetch-depth: 0\n - uses: ./.github/actions/setup-go\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true' || (matrix.umask == '022' && matrix.test-index == 0)\n with:\n go-version: ${{ env.GO_VERSION }}\n - name: install-age\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n run: |\n cd "$(mktemp -d)"\n curl -fsSL "https://github.com/FiloSottile/age/releases/download/v${AGE_VERSION}/age-v${AGE_VERSION}-linux-amd64.tar.gz" | tar xzf -\n sudo install -m 755 age/age /usr/local/bin\n sudo install -m 755 age/age-keygen /usr/local/bin\n - name: install-rage\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n run: |\n cd "$(mktemp -d)"\n curl -fsSL "https://github.com/str4d/rage/releases/download/v${RAGE_VERSION}/rage-v${RAGE_VERSION}-x86_64-linux.tar.gz" | tar xzf -\n sudo install -m 755 rage/rage /usr/local/bin\n sudo install -m 755 rage/rage-keygen /usr/local/bin\n - name: build\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true' || (matrix.umask == '022' && matrix.test-index == 0)\n run: |\n go build -v ./...\n - name: run\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true' || (matrix.umask == '022' && matrix.test-index == 0)\n run: |\n go run . --version\n - name: test-umask-${{ matrix.umask }}\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n TEST_FLAGS: -ldflags="-X github.com/twpayne/chezmoi/v2/internal/chezmoitest.umaskStr=0o${{ matrix.umask }}" -race -timeout=1h\n run: |\n if [ "${{ matrix.test-index }}" = "0" ]; then\n go test ./... -short ${{ env.TEST_FLAGS }}\n go test ./internal/cmd -run=TestScript -filter='^[0-9a-hA-h]' ${{ env.TEST_FLAGS }}\n else\n go test ./internal/cmd -run=TestScript -filter='^[i-zI-Z]' ${{ env.TEST_FLAGS }}\n fi\n test-website:\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: ./.github/actions/setup-go\n with:\n cache-prefix: website-go\n go-version: ${{ env.GO_VERSION }}\n - uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86\n with:\n enable-cache: true\n version: ${{ env.UV_VERSION }}\n - name: install-website-dependencies\n run: |\n uv python install ${{ env.PYTHON_VERSION }}\n uv sync --locked\n - name: build-website\n run: uv run -v task build-docs\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n test-windows:\n name: test-windows-${{ matrix.test-index }}\n strategy:\n fail-fast: false\n matrix:\n test-index: [0, 1, 2, 3]\n needs: changes\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n runs-on: windows-2022\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: ./.github/actions/setup-go\n with:\n go-version: ${{ env.GO_VERSION }}\n - name: build\n run: |\n go build -v ./...\n - name: run\n run: |\n go run . --version\n - name: test\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n run: |\n if (${{ matrix.test-index }} -eq 0) {\n go test ./... -short -race\n go test ./internal/cmd -run=TestScript -filter='^[0-9a-cA-C]' -race\n } elseif (${{ matrix.test-index }} -eq 1) {\n go test ./internal/cmd -run=TestScript -filter='^[d-fD-F]' -race\n } elseif (${{ matrix.test-index }} -eq 2) {\n go test ./internal/cmd -run=TestScript -filter='^[g-lG-L]' -race\n } else {\n go test ./internal/cmd -run=TestScript -filter='^[m-zM-Z]' -race\n }\n check:\n runs-on: ubuntu-22.04\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n with:\n fetch-depth: 0\n - uses: ./.github/actions/setup-go\n with:\n go-version: ${{ env.GO_VERSION }}\n upload-cache: false\n - name: generate\n run: |\n go generate\n git diff --exit-code\n - name: actionlint\n run: |\n go install "github.com/rhysd/actionlint/cmd/actionlint@v${ACTIONLINT_VERSION}"\n actionlint\n - uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38\n with:\n ignore_paths: completions\n - name: editorconfig-checker\n run: |\n GOOS="$(go env GOOS)"\n GOARCH="$(go env GOARCH)"\n curl -sSfL "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v${EDITORCONFIG_CHECKER_VERSION}/ec-${GOOS}-${GOARCH}.tar.gz" | tar -xzf -\n "bin/ec-${GOOS}-${GOARCH}"\n - name: lint-whitespace\n run: |\n go tool lint-whitespace\n - name: lint-txtar\n run: |\n find . -name '*.txtar' -print0 | xargs -0 go tool lint-txtar\n - name: find-typos\n run: |\n go tool find-typos -format=github-actions chezmoi .\n - name: lint-commit-messages\n if: github.event_name == 'push'\n run: |\n go tool lint-commit-messages HEAD~1..HEAD\n - name: lint-commit-messages\n if: github.event_name == 'pull_request' && github.event.pull_request.draft == false\n run: |\n go tool lint-commit-messages ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }}..${{ github.event.pull_request.head.sha }}\n - name: lint-markdown\n if: false # FIXME\n uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265\n lint:\n name: lint-${{ matrix.runs-on }}\n strategy:\n fail-fast: false\n matrix:\n runs-on:\n - macos-15\n - ubuntu-22.04\n - windows-2022\n needs: changes\n if: github.event_name == 'push' || needs.changes.outputs.code == 'true'\n runs-on: ${{ matrix.runs-on }}\n permissions:\n contents: read\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n - uses: ./.github/actions/setup-go\n with:\n go-version: ${{ env.GO_VERSION }}\n upload-cache: false\n - uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd\n with:\n version: v${{ env.GOLANGCI_LINT_VERSION }}\n args: --timeout=5m\n - name: format # FIXME add make format-yaml\n run: |\n make format\n git diff --exit-code\n release: # FIXME this should be merged into test-release above\n if: startsWith(github.ref, 'refs/tags/')\n needs:\n - check\n - lint\n - test-alpine\n - test-archlinux\n - test-macos\n - test-release\n - test-ubuntu\n - test-website\n - test-windows\n runs-on: ubuntu-22.04 # use older Ubuntu for older glibc, update minimum glibc version in install.sh.tmpl if this changes\n permissions:\n contents: write\n steps:\n - name: install-build-dependencies\n run: |\n sudo apt-get --quiet update\n sudo apt-get --no-install-suggests --no-install-recommends --quiet --yes install musl-tools snapcraft\n mkdir -p /opt/chocolatey\n wget -q -O - "https://github.com/chocolatey/choco/releases/download/${CHOCOLATEY_VERSION}/chocolatey.v${CHOCOLATEY_VERSION}.tar.gz" | tar -xz -C "/opt/chocolatey"\n echo '#!/bin/bash' >> /usr/local/bin/choco\n echo 'mono /opt/chocolatey/choco.exe $@' >> /usr/local/bin/choco\n chmod +x /usr/local/bin/choco\n - name: check-snapcraft-credentials\n run: snapcraft whoami\n env:\n SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n with:\n fetch-depth: 0\n - uses: ./.github/actions/free-disk-space\n - uses: ./.github/actions/setup-go\n with:\n cache-prefix: release-go\n go-version: ${{ env.GO_VERSION }}\n - uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a\n - name: create-syso\n run: |\n make create-syso\n - uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552\n with:\n version: ${{ env.GORELEASER_VERSION }}\n args: release --timeout=1h\n env:\n CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }}\n COSIGN_PWD: ${{ secrets.COSIGN_PWD }}\n GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}\n SCOOP_GITHUB_TOKEN: ${{ secrets.SCOOP_GITHUB_TOKEN }}\n SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}\n WINGET_GITHUB_TOKEN: ${{ secrets.WINGET_GITHUB_TOKEN }}\n deploy-website:\n needs:\n - release\n runs-on: ubuntu-22.04\n permissions:\n contents: write\n steps:\n - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683\n with:\n fetch-depth: 0\n - uses: ./.github/actions/setup-go\n with:\n cache-prefix: website-go\n go-version: ${{ env.GO_VERSION }}\n - uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86\n with:\n enable-cache: true\n version: ${{ env.UV_VERSION }}\n - name: prepare-chezmoi.io\n run: |\n uv sync --locked\n uv python install ${{ env.PYTHON_VERSION }}\n uv run -v task build-docs\n env:\n CHEZMOI_GITHUB_TOKEN: ${{ secrets.CHEZMOI_GITHUB_TOKEN }}\n - name: push-chezmoi.io\n run: |\n uv run -v task deploy-docs\n - name: prepare-get.chezmoi.io\n run: |\n cp assets/scripts/install.sh assets/get.chezmoi.io/index.html\n cp assets/scripts/install-local-bin.sh assets/get.chezmoi.io/lb\n cp assets/scripts/install.ps1 assets/get.chezmoi.io/ps1\n cp LICENSE assets/get.chezmoi.io/LICENSE\n - name: push-get.chezmoi.io\n uses: cpina/github-action-push-to-another-repository@07c4d7b3def0a8ebe788a8f2c843a4e1de4f6900\n env:\n SSH_DEPLOY_KEY: ${{ secrets.GET_CHEZMOI_IO_SSH_DEPLOY_KEY }}\n with:\n source-directory: assets/get.chezmoi.io\n destination-github-username: chezmoi\n destination-repository-name: get.chezmoi.io\n target-branch: gh-pages\n commit-message: 'chore: Update from ORIGIN_COMMIT'\n user-email: [email protected]\n
dataset_sample\yaml\twpayne_chezmoi\.github\workflows\main.yml
main.yml
YAML
19,850
0.8
0.058935
0
react-lib
934
2023-09-18T01:35:58.931467
BSD-3-Clause
false
85cc2f6e8445def406167180280231fb
site_name: chezmoi\nsite_url: https://chezmoi.io\nsite_description: Manage your dotfiles across multiple machines, securely.\nsite_author: Tom Payne\ncopyright: Copyright © Tom Payne 2018-2025\nrepo_name: twpayne/chezmoi\nrepo_url: https://github.com/twpayne/chezmoi\nedit_uri: edit/master/assets/chezmoi.io/docs/\nstrict: true\n\nvalidation:\n omitted_files: warn\n absolute_links: relative_to_docs\n unrecognized_links: warn\n anchors: warn\n\ntheme:\n name: material\n logo: logo.svg\n language: en\n palette:\n - media: '(prefers-color-scheme: light)'\n scheme: default\n primary: indigo\n accent: indigo\n toggle:\n icon: material/toggle-switch\n name: Switch to dark mode\n - media: '(prefers-color-scheme: dark)'\n scheme: slate\n primary: indigo\n accent: indigo\n toggle:\n icon: material/toggle-switch-off-outline\n name: Switch to light mode\n features:\n - navigation.expand\n - navigation.indexes\n - navigation.sections\n - navigation.tabs\n - navigation.top\n - navigation.tracking\n\nnav:\n- Home:\n - index.md\n - Install: install.md\n - Quick start: quick-start.md\n - What does chezmoi do?: what-does-chezmoi-do.md\n - Why use chezmoi?: why-use-chezmoi.md\n - Comparison table: comparison-table.md\n - Migrating from another dotfile manager: migrating-from-another-dotfile-manager.md\n- User guide:\n - Command overview: user-guide/command-overview.md\n - Setup: user-guide/setup.md\n - Daily operations: user-guide/daily-operations.md\n - Manage different types of file: user-guide/manage-different-types-of-file.md\n - Include files from elsewhere: user-guide/include-files-from-elsewhere.md\n - Manage machine-to-machine differences: user-guide/manage-machine-to-machine-differences.md\n - Use scripts to perform actions: user-guide/use-scripts-to-perform-actions.md\n - Templating: user-guide/templating.md\n - Tools:\n - Editor: user-guide/tools/editor.md\n - Diff: user-guide/tools/diff.md\n - Merge: user-guide/tools/merge.md\n - HTTP or SOCKS5 proxy: user-guide/tools/http-or-socks5-proxy.md\n - Password managers:\n - user-guide/password-managers/index.md\n - 1Password: user-guide/password-managers/1password.md\n - AWS Secrets Manager: user-guide/password-managers/aws-secrets-manager.md\n - Azure Key Vault: user-guide/password-managers/azure-key-vault.md\n - Bitwarden: user-guide/password-managers/bitwarden.md\n - Dashlane: user-guide/password-managers/dashlane.md\n - Doppler: user-guide/password-managers/doppler.md\n - ejson: user-guide/password-managers/ejson.md\n - gopass: user-guide/password-managers/gopass.md\n - Hashicorp Vault Secrets: user-guide/password-managers/hcp-vault-secrets.md\n - KeePassXC: user-guide/password-managers/keepassxc.md\n - Keychain and Windows Credentials Manager: user-guide/password-managers/keychain-and-windows-credentials-manager.md\n - Keeper: user-guide/password-managers/keeper.md\n - LastPass: user-guide/password-managers/lastpass.md\n - pass: user-guide/password-managers/pass.md\n - passhole: user-guide/password-managers/passhole.md\n - Vault: user-guide/password-managers/vault.md\n - Custom: user-guide/password-managers/custom.md\n - Encryption:\n - user-guide/encryption/index.md\n - age: user-guide/encryption/age.md\n - gpg: user-guide/encryption/gpg.md\n - rage: user-guide/encryption/rage.md\n - Machines:\n - General: user-guide/machines/general.md\n - Linux: user-guide/machines/linux.md\n - macOS: user-guide/machines/macos.md\n - Windows: user-guide/machines/windows.md\n - Containers and VMs: user-guide/machines/containers-and-vms.md\n - Advanced:\n - Customize your source directory: user-guide/advanced/customize-your-source-directory.md\n - Install packages declaratively: user-guide/advanced/install-packages-declaratively.md\n - Install your password manager on init: user-guide/advanced/install-your-password-manager-on-init.md\n - Use chezmoi with Watchman: user-guide/advanced/use-chezmoi-with-watchman.md\n - Migrate away from chezmoi: user-guide/advanced/migrate-away-from-chezmoi.md\n - Frequently asked questions:\n - Usage: user-guide/frequently-asked-questions/usage.md\n - Encryption: user-guide/frequently-asked-questions/encryption.md\n - Troubleshooting: user-guide/frequently-asked-questions/troubleshooting.md\n - Design: user-guide/frequently-asked-questions/design.md\n - General: user-guide/frequently-asked-questions/general.md\n- Reference:\n - reference/index.md\n - Concepts: reference/concepts.md\n - Source state attributes: reference/source-state-attributes.md\n - Target types: reference/target-types.md\n - Application order: reference/application-order.md\n - Configuration file:\n - reference/configuration-file/index.md\n - Variables: reference/configuration-file/variables.md\n - Editor: reference/configuration-file/editor.md\n - Hooks: reference/configuration-file/hooks.md\n - Interpreters: reference/configuration-file/interpreters.md\n - pinentry: reference/configuration-file/pinentry.md\n - textconv: reference/configuration-file/textconv.md\n - umask: reference/configuration-file/umask.md\n - Warnings: reference/configuration-file/warnings.md\n - Special files:\n - reference/special-files/index.md\n - .chezmoi.<format>.tmpl: reference/special-files/chezmoi-format-tmpl.md\n - .chezmoidata.<format>: reference/special-files/chezmoidata-format.md\n - .chezmoiexternal.<format>: reference/special-files/chezmoiexternal-format.md\n - .chezmoiignore: reference/special-files/chezmoiignore.md\n - .chezmoiremove: reference/special-files/chezmoiremove.md\n - .chezmoiroot: reference/special-files/chezmoiroot.md\n - .chezmoiversion: reference/special-files/chezmoiversion.md\n - Special directories:\n - reference/special-directories/index.md\n - .chezmoidata/: reference/special-directories/chezmoidata.md\n - .chezmoiexternals/: reference/special-directories/chezmoiexternals.md\n - .chezmoiscripts/: reference/special-directories/chezmoiscripts.md\n - .chezmoitemplates/: reference/special-directories/chezmoitemplates.md\n - Command line flags:\n - reference/command-line-flags/index.md\n - Global: reference/command-line-flags/global.md\n - Common: reference/command-line-flags/common.md\n - Developer: reference/command-line-flags/developer.md\n - Commands:\n - reference/commands/index.md\n - add: reference/commands/add.md\n - age: reference/commands/age.md\n - apply: reference/commands/apply.md\n - archive: reference/commands/archive.md\n - cat: reference/commands/cat.md\n - cat-config: reference/commands/cat-config.md\n - cd: reference/commands/cd.md\n - chattr: reference/commands/chattr.md\n - completion: reference/commands/completion.md\n - data: reference/commands/data.md\n - decrypt: reference/commands/decrypt.md\n - destroy: reference/commands/destroy.md\n - diff: reference/commands/diff.md\n - doctor: reference/commands/doctor.md\n - dump: reference/commands/dump.md\n - dump-config: reference/commands/dump-config.md\n - edit: reference/commands/edit.md\n - edit-config: reference/commands/edit-config.md\n - edit-config-template: reference/commands/edit-config-template.md\n - encrypt: reference/commands/encrypt.md\n - execute-template: reference/commands/execute-template.md\n - forget: reference/commands/forget.md\n - generate: reference/commands/generate.md\n - git: reference/commands/git.md\n - help: reference/commands/help.md\n - ignored: reference/commands/ignored.md\n - import: reference/commands/import.md\n - init: reference/commands/init.md\n - license: reference/commands/license.md\n - list: reference/commands/list.md\n - manage: reference/commands/manage.md\n - managed: reference/commands/managed.md\n - merge: reference/commands/merge.md\n - merge-all: reference/commands/merge-all.md\n - purge: reference/commands/purge.md\n - re-add: reference/commands/re-add.md\n - remove: reference/commands/remove.md\n - rm: reference/commands/rm.md\n - secret: reference/commands/secret.md\n - source-path: reference/commands/source-path.md\n - state: reference/commands/state.md\n - status: reference/commands/status.md\n - target-path: reference/commands/target-path.md\n - unmanage: reference/commands/unmanage.md\n - unmanaged: reference/commands/unmanaged.md\n - update: reference/commands/update.md\n - upgrade: reference/commands/upgrade.md\n - verify: reference/commands/verify.md\n - Templates:\n - reference/templates/index.md\n - Variables: reference/templates/variables.md\n - Directives: reference/templates/directives.md\n - Functions:\n - reference/templates/functions/index.md\n - comment: reference/templates/functions/comment.md\n - completion: reference/templates/functions/completion.md\n - decrypt: reference/templates/functions/decrypt.md\n - deleteValueAtPath: reference/templates/functions/deleteValueAtPath.md\n - encrypt: reference/templates/functions/encrypt.md\n - eqFold: reference/templates/functions/eqFold.md\n - findExecutable: reference/templates/functions/findExecutable.md\n - findOneExecutable: reference/templates/functions/findOneExecutable.md\n - fromIni: reference/templates/functions/fromIni.md\n - fromJson: reference/templates/functions/fromJson.md\n - fromJsonc: reference/templates/functions/fromJsonc.md\n - fromToml: reference/templates/functions/fromToml.md\n - fromYaml: reference/templates/functions/fromYaml.md\n - glob: reference/templates/functions/glob.md\n - hexDecode: reference/templates/functions/hexDecode.md\n - hexEncode: reference/templates/functions/hexEncode.md\n - include: reference/templates/functions/include.md\n - includeTemplate: reference/templates/functions/includeTemplate.md\n - ioreg: reference/templates/functions/ioreg.md\n - isExecutable: reference/templates/functions/isExecutable.md\n - joinPath: reference/templates/functions/joinPath.md\n - jq: reference/templates/functions/jq.md\n - lookPath: reference/templates/functions/lookPath.md\n - lstat: reference/templates/functions/lstat.md\n - mozillaInstallHash: reference/templates/functions/mozillaInstallHash.md\n - output: reference/templates/functions/output.md\n - outputList: reference/templates/functions/outputList.md\n - pruneEmptyDicts: reference/templates/functions/pruneEmptyDicts.md\n - quoteList: reference/templates/functions/quoteList.md\n - replaceAllRegex: reference/templates/functions/replaceAllRegex.md\n - setValueAtPath: reference/templates/functions/setValueAtPath.md\n - stat: reference/templates/functions/stat.md\n - toIni: reference/templates/functions/toIni.md\n - toPrettyJson: reference/templates/functions/toPrettyJson.md\n - toString: reference/templates/functions/toString.md\n - toStrings: reference/templates/functions/toStrings.md\n - toToml: reference/templates/functions/toToml.md\n - toYaml: reference/templates/functions/toYaml.md\n - warnf: reference/templates/functions/warnf.md\n - GitHub functions:\n - reference/templates/github-functions/index.md\n - gitHubKeys: reference/templates/github-functions/gitHubKeys.md\n - gitHubLatestRelease: reference/templates/github-functions/gitHubLatestRelease.md\n - gitHubRelease: reference/templates/github-functions/gitHubRelease.md\n - gitHubLatestReleaseAssetURL: reference/templates/github-functions/gitHubLatestReleaseAssetURL.md\n - gitHubReleaseAssetURL: reference/templates/github-functions/gitHubReleaseAssetURL.md\n - gitHubLatestTag: reference/templates/github-functions/gitHubLatestTag.md\n - gitHubReleases: reference/templates/github-functions/gitHubReleases.md\n - gitHubTags: reference/templates/github-functions/gitHubTags.md\n - Init functions:\n - reference/templates/init-functions/index.md\n - exit: reference/templates/init-functions/exit.md\n - promptBool: reference/templates/init-functions/promptBool.md\n - promptBoolOnce: reference/templates/init-functions/promptBoolOnce.md\n - promptChoice: reference/templates/init-functions/promptChoice.md\n - promptChoiceOnce: reference/templates/init-functions/promptChoiceOnce.md\n - promptInt: reference/templates/init-functions/promptInt.md\n - promptIntOnce: reference/templates/init-functions/promptIntOnce.md\n - promptMultichoice: reference/templates/init-functions/promptMultichoice.md\n - promptMultichoiceOnce: reference/templates/init-functions/promptMultichoiceOnce.md\n - promptString: reference/templates/init-functions/promptString.md\n - promptStringOnce: reference/templates/init-functions/promptStringOnce.md\n - stdinIsATTY: reference/templates/init-functions/stdinIsATTY.md\n - writeToStdout: reference/templates/init-functions/writeToStdout.md\n - 1Password functions:\n - reference/templates/1password-functions/index.md\n - onepassword: reference/templates/1password-functions/onepassword.md\n - onepasswordDocument: reference/templates/1password-functions/onepasswordDocument.md\n - onepasswordDetailsFields: reference/templates/1password-functions/onepasswordDetailsFields.md\n - onepasswordItemFields: reference/templates/1password-functions/onepasswordItemFields.md\n - onepasswordRead: reference/templates/1password-functions/onepasswordRead.md\n - AWS Secrets Manager functions:\n - reference/templates/aws-secrets-manager-functions/index.md\n - awsSecretsManager: reference/templates/aws-secrets-manager-functions/awsSecretsManager.md\n - awsSecretsManagerRaw: reference/templates/aws-secrets-manager-functions/awsSecretsManagerRaw.md\n - Azure Key Vault functions:\n - azureKeyVault: reference/templates/azure-key-vault-functions/azureKeyVault.md\n - Bitwarden functions:\n - reference/templates/bitwarden-functions/index.md\n - bitwarden: reference/templates/bitwarden-functions/bitwarden.md\n - bitwardenAttachment: reference/templates/bitwarden-functions/bitwardenAttachment.md\n - bitwardenAttachmentByRef: reference/templates/bitwarden-functions/bitwardenAttachmentByRef.md\n - bitwardenFields: reference/templates/bitwarden-functions/bitwardenFields.md\n - bitwardenSecrets: reference/templates/bitwarden-functions/bitwardenSecrets.md\n - rbw: reference/templates/bitwarden-functions/rbw.md\n - rbwFields: reference/templates/bitwarden-functions/rbwFields.md\n - Dashlane functions:\n - reference/templates/dashlane-functions/index.md\n - dashlaneNote: reference/templates/dashlane-functions/dashlaneNote.md\n - dashlanePassword: reference/templates/dashlane-functions/dashlanePassword.md\n - Doppler functions:\n - reference/templates/doppler-functions/index.md\n - doppler: reference/templates/doppler-functions/doppler.md\n - dopplerProjectJson: reference/templates/doppler-functions/dopplerProjectJson.md\n - ejson functions:\n - reference/templates/ejson-functions/index.md\n - ejsonDecrypt: reference/templates/ejson-functions/ejsonDecrypt.md\n - ejsonDecryptWithKey: reference/templates/ejson-functions/ejsonDecryptWithKey.md\n - gopass functions:\n - reference/templates/gopass-functions/index.md\n - gopass: reference/templates/gopass-functions/gopass.md\n - gopassRaw: reference/templates/gopass-functions/gopassRaw.md\n - HCP Vault Secrets functions:\n - reference/templates/hcp-vault-secrets-functions/index.md\n - hcpVaultSecret: reference/templates/hcp-vault-secrets-functions/hcpVaultSecret.md\n - hcpVaultSecretJson: reference/templates/hcp-vault-secrets-functions/hcpVaultSecretJson.md\n - KeePassXC functions:\n - reference/templates/keepassxc-functions/index.md\n - keepassxc: reference/templates/keepassxc-functions/keepassxc.md\n - keepassxcAttachment: reference/templates/keepassxc-functions/keepassxcAttachment.md\n - keepassxcAttribute: reference/templates/keepassxc-functions/keepassxcAttribute.md\n - Keeper functions:\n - reference/templates/keeper-functions/index.md\n - keeper: reference/templates/keeper-functions/keeper.md\n - keeperDataFields: reference/templates/keeper-functions/keeperDataFields.md\n - keeperFindPassword: reference/templates/keeper-functions/keeperFindPassword.md\n - Keyring functions:\n - keyring: reference/templates/keyring-functions/keyring.md\n - LastPass functions:\n - reference/templates/lastpass-functions/index.md\n - lastpass: reference/templates/lastpass-functions/lastpass.md\n - lastpassRaw: reference/templates/lastpass-functions/lastpassRaw.md\n - pass functions:\n - reference/templates/pass-functions/index.md\n - pass: reference/templates/pass-functions/pass.md\n - passFields: reference/templates/pass-functions/passFields.md\n - passRaw: reference/templates/pass-functions/passRaw.md\n - Passhole functions:\n - reference/templates/passhole-functions/index.md\n - passhole: reference/templates/passhole-functions/passhole.md\n - Vault functions:\n - vault: reference/templates/vault-functions/vault.md\n - Generic secret functions:\n - reference/templates/secret-functions/index.md\n - secret: reference/templates/secret-functions/secret.md\n - secretJSON: reference/templates/secret-functions/secretJSON.md\n - Plugins: reference/plugins.md\n - Release history: reference/release-history.md\n- Developer guide:\n - developer-guide/index.md\n - Testing: developer-guide/testing.md\n - Contributing changes: developer-guide/contributing-changes.md\n - Website: developer-guide/website.md\n - Install script: developer-guide/install-script.md\n - Using make: developer-guide/using-make.md\n - Releases: developer-guide/releases.md\n - Packaging: developer-guide/packaging.md\n - Security: developer-guide/security.md\n - Architecture: developer-guide/architecture.md\n - Building on top of chezmoi: developer-guide/building-on-top-of-chezmoi.md\n- Links:\n - Articles: links/articles.md\n - Podcasts: links/podcasts.md\n - Videos: links/videos.md\n - Dotfile repos: links/dotfile-repos.md\n - Related software: links/related-software.md\n - Social media: links/social-media.md\n- License: license.md\n\nmarkdown_extensions:\n- admonition\n- attr_list\n- meta\n- pymdownx.details\n- pymdownx.snippets:\n base_path:\n - assets/chezmoi.io/snippets\n - snippets\n check_paths: true\n- pymdownx.superfences:\n custom_fences:\n - name: mermaid\n class: mermaid\n format: !!python/name:mermaid2.fence_mermaid\n- pymdownx.tabbed:\n alternate_style: true\n\nhooks:\n- docs/hooks.py\n\nplugins:\n- mermaid2:\n version: 11.4.1\n arguments:\n # test if its __palette_0/1 (dark) or __palette_1/2 (light)\n theme: |\n ^(JSON.parse(__md_get("__palette").index == 1)) ? 'dark' : 'light'\n- search\n\nextra_javascript:\n- extra/refresh_on_toggle_dark_light.js\n\nwatch:\n- snippets\n
dataset_sample\yaml\twpayne_chezmoi\assets\chezmoi.io\mkdocs.yml
mkdocs.yml
YAML
19,036
0.95
0.010152
0.002591
react-lib
88
2025-06-09T15:23:33.445610
GPL-3.0
false
287539878c910296076669548b6f71d0
name: 🐞 Compiler Bug Report\ndescription: For bugs in the Typst compiler\ntitle: Write a short and descriptive title!\nlabels:\n - bug\nbody:\n - type: markdown\n attributes:\n value: Thanks for reporting a bug in the Typst compiler. Did you [take a look](https://github.com/typst/typst/issues?q=is%3Aopen+is%3Aissue+label%3Abug) if your issue has already been filed? If so, join the discussion there! Is your issue related to Typst's web app? Please file it [here](https://github.com/typst/webapp-issues/issues) instead.\n - type: textarea\n id: description\n attributes:\n label: Description\n description: Please describe your issue. Include specific steps to reproduce it or a screenshot if the problem is with Typst's output.\n placeholder: Terse and specific description of the bug. You can add a screenshot by dragging an image here.\n validations:\n required: true\n - type: input\n id: repro-url\n attributes:\n label: Reproduction URL\n description: If you did not specify Typst code above, you can share a link to your typst.app project here.\n placeholder: https://typst.app/project/rU6j4Q5foiCcvB7Hz_gs9m\n validations:\n required: false\n - type: dropdown\n id: os\n attributes:\n label: Operating system\n description: Which platform did you run the compiler on?\n multiple: true\n options:\n - Web app\n - Windows\n - Linux\n - macOS\n validations:\n required: false\n - type: checkboxes\n id: updated\n attributes:\n label: Typst version\n description: Please check this box to confirm you are using the latest released version of Typst or an unreleased commit from this repository after the latest release.\n options:\n - label: I am using the latest version of Typst\n required: false\n
dataset_sample\yaml\typst_typst\.github\ISSUE_TEMPLATE\1-bug.yml
1-bug.yml
YAML
1,833
0.95
0.065217
0
node-utils
955
2024-10-30T07:15:47.074198
BSD-3-Clause
false
58a496cb6a259c9862a4e495868693a3
name: 🪴 Compiler Feature Request\ndescription: For feature requests for the Typst compiler\ntitle: Write a short and descriptive title!\nlabels:\n - feature request\nbody:\n - type: markdown\n attributes:\n value: Thanks for sharing your feature request for the Typst compiler. Did you [take a look](https://github.com/typst/typst/issues?q=is%3Aopen+is%3Aissue+label%3A%22feature+request%22) if a similar request has already been filed? If so, join the discussion there! Is your feature request related to Typst's web app? Please file it [here](https://github.com/typst/webapp-issues/issues) instead.\n - type: textarea\n id: description\n attributes:\n label: Description\n description: Please describe your feature request. You can also add a mockup if you are requesting a new output feature!\n placeholder: Terse and specific description of the feature. You can add an image by dragging a file here.\n validations:\n required: true\n - type: textarea\n id: use-case\n attributes:\n label: Use Case\n description: Please describe why this feature would be useful.\n placeholder: Describe what users can accomplish with this feature and whom it might be useful for.\n validations:\n required: true\n
dataset_sample\yaml\typst_typst\.github\ISSUE_TEMPLATE\2-feature.yml
2-feature.yml
YAML
1,249
0.95
0.24
0
awesome-app
500
2025-05-06T03:41:28.833340
Apache-2.0
false
4a2de0eacd892afca60b052b5a44a20d
name: 📖 Documentation\ndescription: For issues with the documentation\ntitle: Write a short and descriptive title!\nlabels:\n - docs\nbody:\n - type: markdown\n attributes:\n value: Thanks for reporting an issue with Typst's documentation. Did you [take a look](https://github.com/typst/typst/issues?q=is%3Aopen+is%3Aissue+label%3Adocs) if your issue has already been filed? If so, join the discussion there! Is your issue related to Typst's web app? Please file it [here](https://github.com/typst/webapp-issues/issues) instead.\n - type: textarea\n id: description\n attributes:\n label: Description\n description: Please describe your issue.\n placeholder: Terse and specific description of the issue. You can add a screenshot by dragging an image here.\n validations:\n required: true\n
dataset_sample\yaml\typst_typst\.github\ISSUE_TEMPLATE\3-docs.yml
3-docs.yml
YAML
815
0.95
0.117647
0
react-lib
690
2023-07-15T09:31:16.379806
BSD-3-Clause
false
4fbf8b29376bfa01be1783a6c8d21d39
blank_issues_enabled: true\ncontact_links:\n - name: 💻 Web App Issues\n url: https://github.com/typst/webapp-issues/issues\n about: Bug reports or feature requests for Typst's official web app\n - name: 🏛️ Typst Forum\n url: https://forum.typst.app/\n about: Do you have a question instead of a specific bug or feature request? Open a question in the Forum!\n - name: 💬 Typst Discord\n url: https://discord.gg/2uDybryKPe\n about: If you're unsure about your issue, join and chat with the community on our Discord server!\n - name: 📨 Contact Us\n url: https://typst.app/contact/\n about: Did you have a bad interaction here or need to speak with the Typst Team privately? You can contact us directly.\n
dataset_sample\yaml\typst_typst\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
729
0.8
0.071429
0
react-lib
908
2025-06-07T15:06:18.516322
MIT
false
6a3f543f74d167e19cb37e964772b684
name: Continuous integration\non: [push, pull_request, merge_group]\n\nenv:\n RUSTFLAGS: "-Dwarnings"\n RUSTDOCFLAGS: "-Dwarnings"\n TYPST_TESTS_EXTENDED: true\n PKG_CONFIG_i686-unknown-linux-gnu: /usr/bin/i686-linux-gnu-pkgconf\n\njobs:\n # This allows us to have one branch protection rule for the full test matrix.\n # See: https://github.com/orgs/community/discussions/4324\n tests:\n name: Tests\n runs-on: ubuntu-latest\n needs: [test-matrix]\n if: always()\n steps:\n - name: Tests successful\n if: ${{ !(contains(needs.*.result, 'failure')) }}\n run: exit 0\n - name: Tests failing\n if: ${{ contains(needs.*.result, 'failure') }}\n run: exit 1\n\n test-matrix:\n name: Tests\n strategy:\n matrix:\n os: [ubuntu-latest, windows-latest]\n bits: [64]\n include:\n - os: ubuntu-latest\n bits: 32\n runs-on: ${{ matrix.os }}\n steps:\n - uses: actions/checkout@v4\n - if: startsWith(matrix.os, 'ubuntu-') && matrix.bits == 32\n run: |\n sudo dpkg --add-architecture i386\n sudo apt update\n sudo apt install -y gcc-multilib libssl-dev:i386 pkg-config:i386\n - uses: dtolnay/[email protected]\n with:\n targets: ${{ matrix.bits == 32 && 'i686-unknown-linux-gnu' || '' }}\n - uses: Swatinem/rust-cache@v2\n with:\n key: ${{ matrix.bits }}\n - run: cargo test --workspace --no-run ${{ matrix.bits == 32 && '--target i686-unknown-linux-gnu' || '' }}\n - run: cargo test --workspace --no-fail-fast ${{ matrix.bits == 32 && '--target i686-unknown-linux-gnu' || '' }}\n - name: Upload rendered test output\n if: failure()\n uses: actions/upload-artifact@v4\n with:\n name: tests-rendered-${{ matrix.os }}-${{ matrix.bits }}\n path: tests/store/render/**\n retention-days: 3\n - name: Update test artifacts\n if: failure()\n run: |\n cargo test --workspace --test tests ${{ matrix.bits == 32 && '--target i686-unknown-linux-gnu' || '' }} -- --update\n echo 'updated_artifacts=1' >> "$GITHUB_ENV"\n - name: Upload updated reference output (for use if the test changes are desired)\n if: failure() && env.updated_artifacts\n uses: actions/upload-artifact@v4\n with:\n name: tests-updated-${{ matrix.os }}-${{ matrix.bits }}\n path: tests/ref/**\n retention-days: 3\n\n checks:\n name: Check clippy, formatting, and documentation\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: dtolnay/[email protected]\n with:\n components: clippy, rustfmt\n - uses: Swatinem/rust-cache@v2\n - run: cargo clippy --workspace --all-targets --all-features\n - run: cargo clippy --workspace --all-targets --no-default-features\n - run: cargo fmt --check --all\n - run: cargo doc --workspace --no-deps\n\n min-version:\n name: Check minimum Rust version\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: dtolnay/[email protected]\n - uses: Swatinem/rust-cache@v2\n - run: cargo check --workspace\n\n fuzz:\n name: Check fuzzers\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: dtolnay/rust-toolchain@master\n with:\n toolchain: nightly-2024-10-29\n - uses: Swatinem/rust-cache@v2\n - run: cargo install --locked [email protected]\n - run: cd tests/fuzz && cargo fuzz build --dev\n
dataset_sample\yaml\typst_typst\.github\workflows\ci.yml
ci.yml
YAML
3,536
0.8
0.096154
0.020408
react-lib
930
2024-01-11T14:35:21.997174
BSD-3-Clause
false
d748ee5f671211e67bf0069dc0da257c
name: Build and Publish Docker Image\n\non:\n release:\n types: [published]\n workflow_dispatch:\n\nenv:\n REGISTRY: ghcr.io\n\njobs:\n build:\n name: Build Images\n runs-on: ubuntu-latest\n strategy:\n fail-fast: false\n matrix:\n platform:\n - linux/amd64\n - linux/arm64\n permissions:\n contents: read\n packages: write\n\n steps:\n - name: Prepare\n run: |\n platform=${{ matrix.platform }}\n echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV\n echo "IMAGE_NAME=${REGISTRY}/${GITHUB_REPOSITORY@L}" >> $GITHUB_ENV\n\n - name: Checkout repository\n uses: actions/checkout@v4\n\n - name: Get current date\n run: echo "TYPST_BUILD_DATE=\"$(date -u +'%Y-%m-%dT%H:%M:%SZ')\" >> $GITHUB_ENV"\n\n - name: Setup Docker buildx\n uses: docker/[email protected]\n with:\n platforms: ${{ matrix.platform }}\n\n - name: Extract Docker metadata\n id: meta\n uses: docker/[email protected]\n with:\n images: ${{ env.IMAGE_NAME }}\n\n - name: Log into registry ${{ env.REGISTRY }}\n uses: docker/[email protected]\n with:\n registry: ${{ env.REGISTRY }}\n username: ${{ github.actor }}\n password: ${{ secrets.GITHUB_TOKEN }}\n\n - name: Build Docker image\n id: build\n uses: docker/[email protected]\n with:\n labels: ${{ steps.meta.outputs.labels }}\n platforms: ${{ matrix.platform }}\n outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true\n cache-from: type=gha\n cache-to: type=gha,mode=max\n build-args: |\n REVISION=${{ github.sha }}\n CREATED=${{ env.TYPST_BUILD_DATE }}\n\n - name: Export digest\n run: |\n mkdir -p /tmp/digests\n digest="${{ steps.build.outputs.digest }}"\n touch "/tmp/digests/${digest#sha256:}"\n\n - name: Upload digest\n uses: actions/upload-artifact@v4\n with:\n name: digests-${{ env.PLATFORM_PAIR }}\n path: /tmp/digests/*\n if-no-files-found: error\n retention-days: 1\n\n merge:\n name: Merge and Publish\n runs-on: ubuntu-latest\n needs:\n - build\n\n permissions:\n contents: read\n packages: write\n\n steps:\n - name: Prepare\n run: |\n echo "IMAGE_NAME=${REGISTRY}/${GITHUB_REPOSITORY@L}" >> $GITHUB_ENV\n\n - name: Download digests\n uses: actions/download-artifact@v4\n with:\n path: /tmp/digests\n pattern: digests-*\n merge-multiple: true\n\n - name: Set up Docker Buildx\n uses: docker/setup-buildx-action@v3\n\n - name: Docker meta\n id: meta\n uses: docker/metadata-action@v5\n with:\n images: ${{ env.IMAGE_NAME }}\n\n - name: Log into registry ${{ env.REGISTRY }}\n uses: docker/[email protected]\n with:\n registry: ${{ env.REGISTRY }}\n username: ${{ github.actor }}\n password: ${{ secrets.GITHUB_TOKEN }}\n\n - name: Create manifest list and push\n working-directory: /tmp/digests\n run: |\n docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \\n $(printf '${{ env.IMAGE_NAME }}@sha256:%s ' *)\n - name: Inspect image\n run: |\n docker buildx imagetools inspect ${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }}\n
dataset_sample\yaml\typst_typst\.github\workflows\docker-image.yml
docker-image.yml
YAML
3,556
0.8
0.007813
0
python-kit
940
2024-10-23T21:54:00.329748
GPL-3.0
false
c58d258e4912fb64f1a387f27e844f17
name: Move to Typst Forum\non:\n issues:\n types:\n - labeled\njobs:\n add-comment:\n if: github.event.label.name == 'to-forum'\n runs-on: ubuntu-latest\n permissions:\n issues: write\n steps:\n - name: Call Discourse API to create forum post\n env:\n ISSUE_BODY: ${{ github.event.issue.body }}\n ISSUE_TITLE: ${{ github.event.issue.title }}\n ISSUE_NUMBER: ${{ github.event.issue.number }}\n ISSUE_URL: ${{ github.event.issue.html_url }}\n ISSUE_USER_LOGIN: ${{ github.event.issue.user.login }}\n REPOSITORY_OWNER: ${{ github.repository_owner }}\n run: |\n read -d '' RAW << END_OF_BODY\n This topic was moved from GitHub issue ${ISSUE_NUMBER}. Please continue the conversation here.\n\n Here is the original issue:\n [quote="${ISSUE_USER_LOGIN}"]\n ${ISSUE_BODY}\n [/quote]\n\n Browse the previous discussion at ${ISSUE_URL}\n END_OF_BODY\n\n TITLE_JSON=$(jq -n --arg title "[#${ISSUE_NUMBER}] ${ISSUE_TITLE}" '$title')\n RAW_JSON=$(jq -n --arg raw "$RAW" '$raw')\n EXTERNAL_ID_JSON=$(jq -n --arg external_id "gh-${REPOSITORY_OWNER}-typst-${ISSUE_NUMBER}" '$external_id')\n\n RESPONSE=$(curl -X POST "https://forum.typst.app/posts.json" \\n --fail-with-body \\n -H "Api-Key: ${{ secrets.DISCOURSE_TOKEN }}" \\n -H "Content-Type: application/json" \\n -d "{\n \"title\": $TITLE_JSON,\n \"category\": 4,\n \"external_id\": $EXTERNAL_ID_JSON,\n \"raw\": $RAW_JSON\n }")\n\n # Check if response contains errors\n if [ $(jq -n --argjson response "$RESPONSE" '$response.errors | length') -gt 0 ]; then\n # Join the errors with commas\n ERRORS=$(jq -n --argjson response "$RESPONSE" '$response.errors | join(", ")')\n echo "DISCOURSE_ERROR=$ERRORS" >> $GITHUB_ENV\n exit 1\n fi\n\n # Check if the response returned a non-200 status code\n if [ $? -ne 0 ]; then\n echo "DISCOURSE_ERROR=Failed to call the Discourse API" >> $GITHUB_ENV\n exit 1\n fi\n\n THREAD_ID="$(jq -n --argjson response "$RESPONSE" '$response.topic_id')"\n if [ "$THREAD_ID" = 'null' ]; then\n echo "DISCOURSE_ERROR=Failed to retrieve new thread ID" >> $GITHUB_ENV\n exit 1\n fi\n\n echo "THREAD_ID=$THREAD_ID" >> $GITHUB_ENV\n - name: Add a comment if the workflow failed\n if: failure()\n run: |\n gh issue comment ${{ github.event.issue.number }} --body "Failed to move this issue to the Typst Forum. This is the error that the API call returned: $DISCOURSE_ERROR"\n - name: Add comment and close as not planned\n run: |\n gh issue close "$NUMBER" --reason "not planned" --comment "$BODY"\n env:\n GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n GH_REPO: ${{ github.repository }}\n NUMBER: ${{ github.event.issue.number }}\n BODY: >\n We moved this issue to the Typst Forum. Please continue the discussion there: https://forum.typst.app/t/${{ env.THREAD_ID }}\n
dataset_sample\yaml\typst_typst\.github\workflows\forum.yml
forum.yml
YAML
3,236
0.8
0.098765
0.041096
vue-tools
30
2024-05-08T09:59:13.057023
Apache-2.0
false
13740e036d27601c97f7e6fbf728bc70
# Based on ripgrep's release action:\n# https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml\n\nname: Build Release Binaries\non:\n workflow_dispatch:\n release:\n types: [published]\n\njobs:\n build-release:\n name: release ${{ matrix.target }}\n runs-on: ${{ matrix.os }}\n permissions:\n contents: write\n strategy:\n fail-fast: false\n matrix:\n include:\n - target: x86_64-unknown-linux-musl\n os: ubuntu-latest\n cross: true\n - target: aarch64-unknown-linux-musl\n os: ubuntu-latest\n cross: true\n - target: armv7-unknown-linux-musleabi\n os: ubuntu-latest\n cross: true\n - target: riscv64gc-unknown-linux-gnu\n os: ubuntu-latest\n cross: true\n - target: x86_64-apple-darwin\n os: macos-latest\n cross: false\n - target: aarch64-apple-darwin\n os: macos-latest\n cross: false\n - target: x86_64-pc-windows-msvc\n os: windows-latest\n cross: false\n - target: aarch64-pc-windows-msvc\n os: windows-latest\n cross: false\n\n steps:\n - uses: actions/checkout@v4\n - uses: dtolnay/[email protected]\n with:\n target: ${{ matrix.target }}\n\n - name: Run Cross\n if: ${{ matrix.cross }}\n run: |\n cargo install cross --git https://github.com/cross-rs/cross.git --locked --rev 085092ca\n cross build -p typst-cli --release --target ${{ matrix.target }} --features self-update,vendor-openssl\n\n - name: Run Cargo\n if: ${{ !matrix.cross }}\n run: cargo build -p typst-cli --release --target ${{ matrix.target }} --features self-update\n\n - name: create artifact directory\n shell: bash\n run: |\n directory=typst-${{ matrix.target }}\n mkdir $directory\n cp README.md LICENSE NOTICE $directory\n if [ -f target/${{ matrix.target }}/release/typst.exe ]; then\n cp target/${{ matrix.target }}/release/typst.exe $directory\n 7z a -r $directory.zip $directory\n else\n cp target/${{ matrix.target }}/release/typst $directory\n tar cJf $directory.tar.xz $directory\n fi\n\n - uses: actions/upload-artifact@v4\n if: github.event_name == 'workflow_dispatch'\n with:\n name: typst-${{ matrix.target }}\n path: "typst-${{ matrix.target }}.*"\n retention-days: 3\n\n - uses: ncipollo/[email protected]\n if: github.event_name == 'release'\n with:\n artifacts: "typst-${{ matrix.target }}.*"\n allowUpdates: true\n omitNameDuringUpdate: true\n omitBodyDuringUpdate: true\n
dataset_sample\yaml\typst_typst\.github\workflows\release.yml
release.yml
YAML
2,683
0.8
0.056818
0.025
react-lib
783
2024-08-08T02:28:17.184315
MIT
false
5b88656b937f0f0e5f2629360a82dd42
# This is responsible for the fact that certain math functions are grouped\n# together into one documentation page although they are not part of any scope.\n\n- name: variants\n title: Variants\n category: math\n path: ["math"]\n filter: ["serif", "sans", "frak", "mono", "bb", "cal"]\n details: |\n Alternate typefaces within formulas.\n\n These functions are distinct from the [`text`] function because math fonts\n contain multiple variants of each letter.\n\n- name: styles\n title: Styles\n category: math\n path: ["math"]\n filter: ["upright", "italic", "bold"]\n details: |\n Alternate letterforms within formulas.\n\n These functions are distinct from the [`text`] function because math fonts\n contain multiple variants of each letter.\n\n- name: sizes\n title: Sizes\n category: math\n path: ["math"]\n filter: ["display", "inline", "script", "sscript"]\n details: |\n Forced size styles for expressions within formulas.\n\n These functions allow manual configuration of the size of equation elements\n to make them look as in a display/inline equation or as if used in a root or\n sub/superscripts.\n\n- name: underover\n title: Under/Over\n category: math\n path: ["math"]\n filter: [\n "underline",\n "overline",\n "underbrace",\n "overbrace",\n "underbracket",\n "overbracket",\n "underparen",\n "overparen",\n "undershell",\n "overshell",\n ]\n details: |\n Delimiters above or below parts of an equation.\n\n The braces and brackets further allow you to add an optional annotation\n below or above themselves.\n\n- name: roots\n title: Roots\n category: math\n path: ["math"]\n filter: ["root", "sqrt"]\n details: |\n Square and non-square roots.\n\n # Example\n ```example\n $ sqrt(3 - 2 sqrt(2)) = sqrt(2) - 1 $\n $ root(3, x) $\n ```\n\n- name: attach\n title: Attach\n category: math\n path: ["math"]\n filter: ["attach", "scripts", "limits"]\n details: |\n Subscript, superscripts, and limits.\n\n Attachments can be displayed either as sub/superscripts, or limits. Typst\n automatically decides which is more suitable depending on the base, but you\n can also control this manually with the `scripts` and `limits` functions.\n\n If you want the base to stretch to fit long top and bottom attachments (for\n example, an arrow with text above it), use the [`stretch`]($math.stretch)\n function.\n\n # Example\n ```example\n $ sum_(i=0)^n a_i = 2^(1+i) $\n ```\n\n # Syntax\n This function also has dedicated syntax for attachments after the base: Use\n the underscore (`_`) to indicate a subscript i.e. bottom attachment and the\n hat (`^`) to indicate a superscript i.e. top attachment.\n\n- name: lr\n title: Left/Right\n category: math\n path: ["math"]\n filter: ["lr", "mid", "abs", "norm", "floor", "ceil", "round"]\n details: |\n Delimiter matching.\n\n The `lr` function allows you to match two delimiters and scale them with the\n content they contain. While this also happens automatically for delimiters\n that match syntactically, `lr` allows you to match two arbitrary delimiters\n and control their size exactly. Apart from the `lr` function, Typst provides\n a few more functions that create delimiter pairings for absolute, ceiled,\n and floored values as well as norms.\n\n # Example\n ```example\n $ [a, b/2] $\n $ lr(]sum_(x=1)^n], size: #50%) x $\n $ abs((x + y) / 2) $\n ```\n\n- name: calc\n title: Calculation\n category: foundations\n path: ["calc"]\n details: |\n Module for calculations and processing of numeric values.\n\n These definitions are part of the `calc` module and not imported by default.\n In addition to the functions listed below, the `calc` module also defines\n the constants `pi`, `tau`, `e`, and `inf`.\n\n- name: sys\n title: System\n category: foundations\n path: ["sys"]\n details: |\n Module for system interactions.\n\n This module defines the following items:\n\n - The `sys.version` constant (of type [`version`]) that specifies\n the currently active Typst compiler version.\n\n - The `sys.inputs` [dictionary], which makes external inputs\n available to the project. An input specified in the command line as\n `--input key=value` becomes available under `sys.inputs.key` as\n `{"value"}`. To include spaces in the value, it may be enclosed with\n single or double quotes.\n\n The value is always of type [string]($str). More complex data\n may be parsed manually using functions like [`json.decode`]($json.decode).\n\n- name: sym\n title: General\n category: symbols\n path: ["sym"]\n details: |\n Named general symbols.\n\n For example, `#sym.arrow` produces the → symbol. Within\n [formulas]($category/math), these symbols can be used without the `#sym.`\n prefix.\n\n The `d` in an integral's `dx` can be written as `[$dif x$]`.\n Outside math formulas, `dif` can be accessed as `math.dif`.\n\n- name: emoji\n title: Emoji\n category: symbols\n path: ["emoji"]\n details: |\n Named emojis.\n\n For example, `#emoji.face` produces the 😀 emoji. If you frequently use\n certain emojis, you can also import them from the `emoji` module (`[#import\n emoji: face]`) to use them without the `emoji.` prefix.\n
dataset_sample\yaml\typst_typst\docs\reference\groups.yml
groups.yml
YAML
5,220
0.95
0.084746
0.040816
react-lib
847
2024-11-21T19:52:00.255850
BSD-3-Clause
false
726ebbbb0266ada532f23c5fc8d98c7e
name: Check\n\non:\n pull_request:\n types: [opened, synchronize, reopened, ready_for_review]\n branches:\n - main\n - union-1-staging\n merge_group:\n\npermissions: read-all\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n check:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n fetch-depth: 0\n - name: Check for LFS files\n run: ./.github/scripts/lfs.sh\n - name: Lint commit messages\n uses: wagoid/commitlint-github-action@v5\n with:\n failOnWarnings: false\n
dataset_sample\yaml\unionlabs_union\.github\workflows\check.yml
check.yml
YAML
623
0.7
0.033333
0
python-kit
956
2025-03-10T08:55:07.573258
MIT
false
ec182f1baee2c01e984b6a771b3c2c9e
name: Deploy App 2\n\non:\n push:\n branches:\n - main\n - release/app2\n paths:\n - 'app2/**'\n pull_request:\n paths:\n - 'app2/**'\n workflow_dispatch:\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\nenv:\n NODE_OPTIONS: '--no-warnings'\n ACTIONS_RUNNER_DEBUG: true\n\njobs:\n deploy-preview:\n runs-on: ['ubuntu-latest']\n permissions:\n contents: read\n pull-requests: write\n env:\n npm_config_yes: true\n ENVIRONMENT: 'preview'\n environment: 'app2-preview'\n if: github.event_name == 'pull_request'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n run: |\n nix build .#app2\n - name: '[preview] 🔶 Publish to Cloudflare Pages'\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="app2" deploy result >> /tmp/app2_deploy.txt\n\n - name: Set Deploy Output\n run: |\n {\n echo 'DEPLOY_OUTPUT<<EOF'\n tail -n 2 /tmp/app2_deploy.txt\n echo 'EOF'\n } >> $GITHUB_ENV\n\n - name: Comment Site Deploy Results\n uses: thollander/actions-comment-pull-request@v2\n with:\n message: |\n # App 2 🤌\n ${{ env.DEPLOY_OUTPUT }}\n\n **${{ env.LAST_UPDATED_AT }}**\n comment_tag: deploy-app2-preview-result\n\n deploy-manual:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n ENVIRONMENT: 'preview'\n if: github.event_name == 'workflow_dispatch'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n run: |\n nix build .#app2\n - name: '[workflow-dispatch] 🔶 Publish to Cloudflare Pages'\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="app2" deploy result\n\n deploy-staging:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n ENVIRONMENT: 'staging'\n environment: 'app2-staging'\n if: github.event_name == 'push' && github.ref == 'refs/heads/main'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n run: |\n nix build .#app2\n - name: '[staging] 🔶 Publish to Cloudflare Pages'\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="app2" --branch="staging" deploy result\n\n deploy-production:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n ENVIRONMENT: 'production'\n environment: 'app2-production'\n if: github.event_name == 'push' && github.ref == 'refs/heads/release/app2'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n run: |\n nix build .#app2\n - name: '[production] 🔶 Publish to Cloudflare Pages'\n env:\n ENVIRONMENT: ${{ env.ENVIRONMENT }}\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="app2" --branch="main" deploy result\n\n
dataset_sample\yaml\unionlabs_union\.github\workflows\deploy-app2.yml
deploy-app2.yml
YAML
5,662
0.8
0.025806
0.013889
awesome-app
203
2024-10-23T16:07:22.903538
GPL-3.0
false
a87e73a5beee2b470cde50b402cb5f7d
name: Deploy Ceremony\n\non:\n push:\n branches:\n - main\n - release/ceremony\n paths:\n - 'ceremony/**'\n pull_request:\n paths:\n - 'ceremony/**'\n workflow_dispatch:\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\nenv:\n NODE_OPTIONS: '--no-warnings'\n ACTIONS_RUNNER_DEBUG: true\n ASTRO_TELEMETRY_DISABLED: true\n\njobs:\n deploy-preview:\n runs-on: ['ubuntu-latest']\n permissions:\n contents: read\n pull-requests: write\n env:\n npm_config_yes: true\n environment: 'ceremony-preview'\n if: github.event_name == 'pull_request'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#ceremony\n - name: '[preview] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="ceremony" deploy result >> /tmp/ceremony_deploy.txt\n\n - name: Set Deploy Output\n run: |\n {\n echo 'DEPLOY_OUTPUT<<EOF'\n tail -n 2 /tmp/ceremony_deploy.txt\n echo 'EOF'\n } >> $GITHUB_ENV\n\n - name: Comment Site Deploy Results\n uses: thollander/actions-comment-pull-request@v2\n with:\n message: |\n # Ceremony 🤌\n ${{ env.DEPLOY_OUTPUT }}\n\n **${{ env.LAST_UPDATED_AT }}**\n comment_tag: deploy-ceremony-preview-result\n\n deploy-manual:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n if: github.event_name == 'workflow_dispatch'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#ceremony\n - name: '[workflow-dispatch] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="ceremony" deploy result\n\n deploy-staging:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n environment: 'ceremony-staging'\n if: github.event_name == 'push' && github.ref == 'refs/heads/main'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#ceremony\n - name: '[staging] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="ceremony" --branch="staging" deploy result\n\n deploy-production:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n environment: 'ceremony-production'\n if: github.event_name == 'push' && github.ref == 'refs/heads/release/ceremony'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#ceremony\n - name: '[production] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="ceremony" --branch="main" deploy result\n
dataset_sample\yaml\unionlabs_union\.github\workflows\deploy-ceremony.yml
deploy-ceremony.yml
YAML
5,233
0.8
0.028777
0.015504
react-lib
888
2023-11-27T00:09:51.275720
BSD-3-Clause
false
b1bb51f03917198301e3a63c25ddcbe8
name: Deploy Docs\n\non:\n push:\n branches:\n - main\n paths:\n - 'docs/**'\n - 'versions/**'\n - 'networks/genesis/**'\n pull_request:\n paths:\n - 'docs/**'\n - 'versions/**'\n - 'networks/genesis/**'\n workflow_dispatch:\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\nenv:\n NODE_OPTIONS: '--no-warnings'\n ACTIONS_RUNNER_DEBUG: true\n ASTRO_TELEMETRY_DISABLED: true\n\njobs:\n deploy-preview:\n runs-on: ['ubuntu-latest']\n permissions:\n contents: read\n pull-requests: write\n env:\n npm_config_yes: true\n environment: 'docs-preview'\n if: github.event_name == 'pull_request'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#docs\n - name: '[preview] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="docs" deploy result >> /tmp/docs_deploy.txt\n\n - name: Set Deploy Output\n run: |\n {\n echo 'DEPLOY_OUTPUT<<EOF'\n tail -n 2 /tmp/docs_deploy.txt\n echo 'EOF'\n } >> $GITHUB_ENV\n\n - name: Comment Site Deploy Results\n uses: thollander/actions-comment-pull-request@v2\n with:\n message: |\n # Docs 🤌\n ${{ env.DEPLOY_OUTPUT }}\n\n **${{ env.LAST_UPDATED_AT }}**\n comment_tag: deploy-docs-preview-result\n\n deploy-manual:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n if: github.event_name == 'workflow_dispatch'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#docs\n - name: '[workflow-dispatch] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="docs" deploy result\n\n deploy-production:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n environment: 'docs-production'\n if: github.event_name == 'push' && github.ref == 'refs/heads/main'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#docs\n - name: '[production] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="docs" --branch="main" deploy result\n
dataset_sample\yaml\unionlabs_union\.github\workflows\deploy-docs.yml
deploy-docs.yml
YAML
4,151
0.8
0.025424
0.018349
vue-tools
830
2024-09-19T19:14:03.610383
GPL-3.0
false
af9727e056ea05e1d81d489f66d15d2f
name: Deploy Zkgm-dev\n\non:\n push:\n branches:\n - main\n - release/zkgm-dev\n paths:\n - 'zkgm-dev/**'\n pull_request:\n paths:\n - 'zkgm-dev/**'\n workflow_dispatch:\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\nenv:\n NODE_OPTIONS: '--no-warnings'\n ACTIONS_RUNNER_DEBUG: true\n ASTRO_TELEMETRY_DISABLED: true\n\njobs:\n deploy-preview:\n runs-on: ['ubuntu-latest']\n permissions:\n contents: read\n pull-requests: write\n env:\n npm_config_yes: true\n environment: 'zkgm-dev-preview'\n if: github.event_name == 'pull_request'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#zkgm-dev\n - name: '[preview] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="zkgm-dev" deploy result >> /tmp/zkgm-dev_deploy.txt\n\n - name: Set Deploy Output\n run: |\n {\n echo 'DEPLOY_OUTPUT<<EOF'\n tail -n 2 /tmp/zkgm-dev_deploy.txt\n echo 'EOF'\n } >> $GITHUB_ENV\n\n - name: Comment Site Deploy Results\n uses: thollander/actions-comment-pull-request@v2\n with:\n message: |\n # zkgm.dev 🦀\n ${{ env.DEPLOY_OUTPUT }}\n\n **${{ env.LAST_UPDATED_AT }}**\n comment_tag: deploy-zkgm-dev-preview-result\n\n deploy-manual:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n if: github.event_name == 'workflow_dispatch'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#zkgm-dev\n - name: '[workflow-dispatch] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="zkgm-dev" deploy result\n\n deploy-staging:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n environment: 'zkgm-dev-staging'\n if: github.event_name == 'push' && github.ref == 'refs/heads/main'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#zkgm-dev\n - name: '[staging] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="zkgm-dev" --branch="staging" deploy result\n\n deploy-production:\n runs-on: ['ubuntu-latest']\n env:\n npm_config_yes: true\n environment: 'zkgm-dev-production'\n if: github.event_name == 'push' && github.ref == 'refs/heads/release/zkgm-dev'\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: nixbuild/nix-quick-install-action@v28\n with:\n nix_conf: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n run: |\n nix build .#zkgm-dev\n - name: '[production] 🔶 Publish to Cloudflare Pages'\n env:\n CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\n CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}\n run: npx --yes wrangler@latest pages --project-name="zkgm-dev" --branch="main" deploy result\n
dataset_sample\yaml\unionlabs_union\.github\workflows\deploy-zkgm-dev.yml
deploy-zkgm-dev.yml
YAML
5,233
0.8
0.028777
0.015504
react-lib
812
2024-06-12T07:50:20.296414
GPL-3.0
false
2c5cd4164651a0940bcaf653d063a83f
name: e2e Manual\n\non:\n workflow_dispatch:\n\njobs:\n build:\n uses: ./.github/workflows/e2e.yml\n secrets:\n nixbuild_token: ${{ secrets.NIXBUILD_TOKEN }}\n gh_token: ${{ secrets.GITHUB_TOKEN }}\n org_token: ${{ secrets.UNION_ORG_PAT }}\n
dataset_sample\yaml\unionlabs_union\.github\workflows\e2e-manual.yml
e2e-manual.yml
YAML
252
0.7
0
0
node-utils
294
2024-06-21T02:45:47.736504
BSD-3-Clause
false
161ddef9380208d489f81ab70c24497d
\nname: Full end-to-end (e2e) testsuite.\n\non:\n workflow_call:\n secrets:\n nixbuild_token:\n required: true\n gh_token:\n required: true\n org_token:\n required: true\n\njobs:\n build:\n uses: unionlabs/workflows/.github/workflows/build.yml@8fdbd5d131725a503e1e8c7a415edf6726da25c5\n secrets:\n nixbuild_token: ${{ secrets.nixbuild_token }}\n access-tokens: github.com=${{ secrets.github_token }}\n org_token: ${{ secrets.org_token }}\n with:\n filter_builds: '((.top_attr == "checks") and (.system == "x86_64-linux") and (.attr == "virtualisation-works" or .attr == "ensure-blocks" or .attr == "sepolia-runs" or .attr == "union-runs" or .attr == "epoch-completes" or .attr == "forced-set-rotation" or .attr == "upgrade-from-genesis" or .attr == "upgrade-with-tokenfactory-state"))'\n
dataset_sample\yaml\unionlabs_union\.github\workflows\e2e.yml
e2e.yml
YAML
835
0.85
0
0
react-lib
570
2024-05-11T03:00:26.772487
Apache-2.0
false
3140428d46d05d31f14ac0aefe3f2762
name: Nightly\n\non:\n workflow_dispatch:\n workflow_call:\n\njobs:\n build:\n uses: ./.github/workflows/e2e.yml\n secrets:\n nixbuild_token: ${{ secrets.nixbuild_token }}\n gh_token: ${{ secrets.GITHUB_TOKEN }}\n org_token: ${{ secrets.UNION_ORG_PAT }}\n\n create-issue:\n runs-on: ubuntu-latest\n permissions:\n contents: read\n issues: write\n needs: [build]\n # only create an issue if it failed in a scheduled run\n if: github.event_name == 'schedule' && failure()\n steps:\n - uses: actions/checkout@v4\n - uses: JasonEtco/create-an-issue@v2\n env:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\n with:\n filename: .github/templates/nightly-issue-template.md\n
dataset_sample\yaml\unionlabs_union\.github\workflows\nightly.yml
nightly.yml
YAML
833
0.8
0.066667
0.037037
python-kit
769
2024-06-07T09:40:36.681189
GPL-3.0
false
843124891932d70e9ff18cc686b26a06
name: Release Component\n\non:\n push:\n tags: ['*/v[0-9]+\.[0-9]+\.[0-9]+\-rc[0-9]+*', '*/v[0-9]+\.[0-9]+\.[0-9]+*']\n\njobs:\n eval-tag:\n runs-on: ubuntu-latest\n outputs:\n build: ${{ steps.eval.outputs.BUILD }}\n component: ${{ steps.eval.outputs.COMPONENT }}\n image-produced: ${{ steps.eval.outputs.IMAGE_PRODUCED}}\n version: ${{ steps.eval.outputs.VERSION }}\n systems: ${{ steps.eval.outputs.SYSTEMS }}\n archive: ${{ steps.eval.outputs.ARCHIVE }}\n steps:\n - id: eval\n env:\n TAG: ${{github.ref_name}}\n run: |\n component="${TAG%/*}"\n case $component in\n bundle-union-1)\n attrs="[\"bundle-union-1\", \"bundle-union-1-image\"]"\n systems="[\"x86_64-linux\", \"aarch64-linux\"]"\n echo "COMPONENT=$component" >> $GITHUB_OUTPUT\n echo "IMAGE_PRODUCED=true" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n echo "ARCHIVE=true" >> $GITHUB_OUTPUT\n ;;\n bundle-union-testnet-10)\n attrs="[\"bundle-union-testnet-10\", \"bundle-union-testnet-10-image\"]"\n systems="[\"x86_64-linux\", \"aarch64-linux\"]"\n echo "COMPONENT=$component" >> $GITHUB_OUTPUT\n echo "IMAGE_PRODUCED=true" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n echo "ARCHIVE=true" >> $GITHUB_OUTPUT\n ;;\n cometbls-light-client)\n attrs="[\"cometbls-light-client\"]"\n systems="[\"x86_64-linux\"]"\n echo "COMPONENT=$component" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n echo "ARCHIVE=true" >> $GITHUB_OUTPUT\n ;;\n ucs01-relay)\n attrs="[\"ucs01-relay\"]"\n systems="[\"x86_64-linux\"]"\n echo "COMPONENT=$component" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n echo "ARCHIVE=true" >> $GITHUB_OUTPUT\n ;;\n uniond)\n attrs="[\"uniond-release\", \"uniond-release-image\"]"\n systems="[\"x86_64-linux\", \"aarch64-linux\"]"\n echo "COMPONENT=uniond-release" >> $GITHUB_OUTPUT\n echo "IMAGE_PRODUCED=true" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n ;;\n voyager)\n attrs="[\"voyager\"]"\n systems="[\"x86_64-linux\", \"aarch64-linux\"]"\n echo "COMPONENT=$component" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n ;;\n evm-contracts)\n attrs="[\"evm-contracts\"]"\n systems="[\"x86_64-linux\"]"\n echo "COMPONENT=$component" >> $GITHUB_OUTPUT\n echo "SYSTEMS=$systems" >> $GITHUB_OUTPUT\n echo "ARCHIVE=true" >> $GITHUB_OUTPUT\n ;;\n *)\n echo "Invalid tag $TAG"\n exit 1\n ;;\n esac\n echo "BUILD=(.top_attr == \"packages\") \\n and ([.system] | inside($systems) ) \\n and ([.attr] | inside($attrs))" >> $GITHUB_OUTPUT\n echo "VERSION=${TAG##*/}" >> $GITHUB_OUTPUT\n\n download-images-x86_64:\n if: ${{ needs.eval-tag.outputs.image-produced }}\n needs: [eval-tag]\n runs-on: ubuntu-24.04\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: cachix/install-nix-action@v30\n with:\n extra_nix_config: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n run: |\n nix build .#packages.x86_64-linux."$COMPONENT"-image --accept-flake-config\n cp -Lr result x86_64-linux."$COMPONENT"-image\n - uses: actions/upload-artifact@v4\n with:\n name: x86_64-linux.${{ needs.eval-tag.outputs.component }}-image\n path: x86_64-linux.${{ needs.eval-tag.outputs.component }}-image\n\n download-images-aarch64:\n if: ${{ needs.eval-tag.outputs.image-produced && contains(needs.eval-tag.outputs.systems, 'aarch64-linux') }}\n needs: [eval-tag]\n runs-on: ubuntu-24.04-arm\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: cachix/install-nix-action@v30\n with:\n extra_nix_config: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - name: Fetch from Cache\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n run: |\n nix build .#packages.aarch64-linux."$COMPONENT"-image --accept-flake-config\n cp -Lr result aarch64-linux."$COMPONENT"-image\n - uses: actions/upload-artifact@v4\n with:\n name: aarch64-linux.${{ needs.eval-tag.outputs.component }}-image\n path: aarch64-linux.${{ needs.eval-tag.outputs.component }}-image\n\n download-binaries-x86_64:\n needs: [eval-tag]\n runs-on: ubuntu-24.04\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: cachix/install-nix-action@v30\n with:\n extra_nix_config: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - env:\n ARCHIVE: ${{ needs.eval-tag.outputs.archive }}\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n run: |\n nix build .#packages.x86_64-linux."$COMPONENT" --accept-flake-config\n if [[ "$COMPONENT" =~ uniond-release ]]\n then\n cp result/bin/uniond "$COMPONENT"-x86_64-linux\n elif [[ $ARCHIVE ]]\n then\n tar -zcf "$COMPONENT"-x86_64-linux result\n else\n cp result/bin/"$COMPONENT" "$COMPONENT"-x86_64-linux\n fi\n - uses: actions/upload-artifact@v4\n with:\n name: ${{ needs.eval-tag.outputs.component }}-x86_64-linux\n path: ${{ needs.eval-tag.outputs.component }}-x86_64-linux\n\n download-binaries-aarch64:\n needs: [eval-tag]\n runs-on: ubuntu-24.04-arm\n steps:\n - uses: actions/checkout@v4\n with:\n lfs: true\n - uses: cachix/install-nix-action@v30\n with:\n extra_nix_config: |\n trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=\n trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org\n - env:\n ARCHIVE: ${{ needs.eval-tag.outputs.archive }}\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n run: |\n nix build .#packages.aarch64-linux."$COMPONENT" --accept-flake-config\n if [[ "$COMPONENT" =~ uniond-release ]]\n then\n cp result/bin/uniond "$COMPONENT"-aarch64-linux\n elif [[ $ARCHIVE ]]\n then\n tar -zcf "$COMPONENT"-aarch64-linux result\n else\n cp result/bin/"$COMPONENT" "$COMPONENT"-aarch64-linux\n fi\n - uses: actions/upload-artifact@v4\n with:\n name: ${{ needs.eval-tag.outputs.component }}-aarch64-linux\n path: ${{ needs.eval-tag.outputs.component }}-aarch64-linux\n\n release-images:\n needs: [download-images-x86_64, download-images-aarch64, eval-tag]\n if: ${{ needs.eval-tag.outputs.image-produced }}\n runs-on: ubuntu-24.04\n permissions:\n packages: write\n services:\n registry:\n image: registry:2\n ports:\n - 5000:5000\n steps:\n - uses: docker/login-action@v3\n with:\n registry: ghcr.io\n username: ${{ github.actor }}\n password: ${{ secrets.GITHUB_TOKEN }}\n - name: Download aarch64-linux.${{ needs.eval-tag.outputs.component }}-image\n uses: actions/download-artifact@v4\n with:\n name: aarch64-linux.${{ needs.eval-tag.outputs.component }}-image\n path: .\n - name: Download x86_64-linux.${{ needs.eval-tag.outputs.component }}-image\n uses: actions/download-artifact@v4\n with:\n name: x86_64-linux.${{ needs.eval-tag.outputs.component }}-image\n path: .\n - name: Tag Docker Images\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n TAG: ${{ needs.eval-tag.outputs.version }}\n run: |\n echo "Entering for loop"\n for arch in 'aarch64-linux' 'x86_64-linux'\n do\n echo "Tagging $COMPONENT for $arch"\n echo "GITHUB_WORKSPACE ($GITHUB_WORKSPACE)"\n ls -la $GITHUB_WORKSPACE\n echo "wd: ($(pwd))"\n ls -la\n dockerstring=$(docker load < $arch.$COMPONENT-image)\n dockerstring=$(echo ${dockerstring##*':'})\n echo "Getting image ID for $dockerstring"\n imageid=$(docker images --format "{{.ID}}:{{.Tag}}" | grep $dockerstring)\n imageid=$(echo ${imageid%%':'*})\n echo "Tagging image"\n docker tag "$imageid" "localhost:5000/unionlabs/$COMPONENT:$TAG-$arch"\n echo "$COMPONENT for $arch is tagged"\n docker push "localhost:5000/unionlabs/$COMPONENT:$TAG-$arch"\n echo "localhost:5000/unionlabs/$COMPONENT:$TAG-$arch is pushed"\n done\n - name: Create Manifest\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n TAG: ${{ needs.eval-tag.outputs.version }}\n run: |\n docker pull "localhost:5000/unionlabs/$COMPONENT:$TAG-aarch64-linux"\n docker pull "localhost:5000/unionlabs/$COMPONENT:$TAG-x86_64-linux"\n docker manifest create --insecure \\n "localhost:5000/unionlabs/$COMPONENT:$TAG" \\n --amend "localhost:5000/unionlabs/$COMPONENT:$TAG-aarch64-linux" \\n --amend "localhost:5000/unionlabs/$COMPONENT:$TAG-x86_64-linux" \\n - name: Push Manifest to Local Registry\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n TAG: ${{ needs.eval-tag.outputs.version }}\n run: docker manifest push "localhost:5000/unionlabs/$COMPONENT:$TAG"\n - uses: actions/checkout@v4\n with:\n lfs: true\n fetch-depth: 0\n token: ${{ secrets.GITHUB_TOKEN }}\n - name: Annotate Manifest\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n TAG: ${{ needs.eval-tag.outputs.version }}\n run: |\n curl -L https://github.com/regclient/regclient/releases/latest/download/regctl-linux-amd64 >regctl\n chmod 755 regctl && sudo cp ./regctl /usr/bin\n echo "downloaded & installed regctl"\n regctl registry set --tls disabled localhost:5000\n regctl image mod "localhost:5000/unionlabs/$COMPONENT:$TAG" --to-oci --create "$TAG" --annotation org.opencontainers.image.description="$(cat "$GITHUB_WORKSPACE/.github/container-descriptions/$COMPONENT.txt")"\n - uses: docker/login-action@v3\n with:\n registry: ghcr.io\n username: ${{ github.actor }}\n password: ${{ secrets.GITHUB_TOKEN }}\n - name: Copy Manifest to GHCR\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n TAG: ${{ needs.eval-tag.outputs.version }}\n run: |\n wget https://github.com/rapidsai/skopeo/releases/download/v1.12/skopeo-linux-amd64 -O ./skopeo\n chmod +x ./skopeo && sudo cp ./skopeo /usr/bin\n echo "downloaded & installed skopeo"\n skopeo copy --multi-arch=all --insecure-policy --src-tls-verify=false "docker://localhost:5000/unionlabs/$COMPONENT:$TAG" "docker://ghcr.io/unionlabs/$COMPONENT:$TAG"\n echo "Copied $COMPONENT:$TAG multi-arch to GHCR"\n\n public-release:\n needs: [download-binaries-x86_64, download-binaries-aarch64, eval-tag]\n runs-on: ubuntu-latest\n steps:\n - uses: actions/download-artifact@v4\n - id: prep-artifacts\n env:\n COMPONENT: ${{ needs.eval-tag.outputs.component }}\n ARCHIVE: ${{ needs.eval-tag.outputs.archive }}\n SYSTEMS: ${{ needs.eval-tag.outputs.systems }}\n run: |\n echo "# sha256 Checksums" >> release.md\n x86_64=$(echo "$SYSTEMS" | jq 'contains(["x86_64-linux"])')\n aarch64=$(echo "$SYSTEMS" | jq 'contains(["aarch64-linux"])')\n if [[ $ARCHIVE ]]; then\n if [[ $x86_64 = true ]]; then\n echo "Renaming x86_64-linux archive"\n comp_x86_64="$COMPONENT-x86_64-linux"\n comp_x86_64_archive="$comp_x86_64.tar.gz"\n echo "- $(cd "$comp_x86_64" && mv "$comp_x86_64" "$comp_x86_64_archive" && sha256sum "$comp_x86_64_archive")" >> release.md\n fi\n if [[ $aarch64 = true ]]; then\n echo "Renaming aarch64-linux archive"\n comp_aarch64="$COMPONENT-aarch64-linux"\n comp_aarch64_archive="$comp_aarch64.tar.gz"\n echo "- $(cd "$comp_aarch64" && mv "$comp_aarch64" "$comp_aarch64_archive" && sha256sum "$comp_aarch64_archive")" >> release.md\n fi\n echo "Setting archive output"\n echo "FILES=**/$COMPONENT-*.tar.gz" >> $GITHUB_OUTPUT\n else\n if [[ $x86_64 = true ]]; then\n echo "Renaming x86_64-linux binary"\n comp_x86_64="$COMPONENT-x86_64-linux"\n echo "- $(cd "$comp_x86_64" && sha256sum "$comp_x86_64")" >> release.md\n fi\n if [[ $aarch64 = true ]]; then\n echo "Renaming aarch64-linux binary"\n comp_aarch64="$COMPONENT-aarch64-linux"\n echo "- $(cd "$comp_aarch64" && sha256sum "$comp_aarch64")" >> release.md\n fi\n echo "Setting binary output"\n echo "FILES=**/$COMPONENT-*" >> $GITHUB_OUTPUT\n fi\n tree\n - uses: softprops/action-gh-release@v2\n with:\n body_path: release.md\n prerelease: ${{ contains(needs.eval-tag.outputs.version, '-rc') || contains(needs.eval-tag.outputs.version, 'alpha') }}\n repository: unionlabs/union\n token: ${{ secrets.UNION_RELEASES_PAT }}\n name: ${{needs.eval-tag.outputs.component}} ${{needs.eval-tag.outputs.version}}\n tag_name: ${{ github.ref_name }}\n fail_on_unmatched_files: true\n files: ${{ steps.prep-artifacts.outputs.FILES }}\n
dataset_sample\yaml\unionlabs_union\.github\workflows\release-component.yml
release-component.yml
YAML
15,287
0.8
0.043478
0.002967
awesome-app
947
2025-04-21T05:19:50.772753
MIT
false
2f093488af6947976680837757d598d0
name: 'Publish TypeScript SDK Preview'\n\n# pkg.pr.new won't publish anything to NPM; instead, \n# it leverages its own URLs, which are npm-compatible.\n\n# npm install https://pkg.pr.new/${owner}/${repo}/${package}@${commit}\n\n# learn more: https://github.com/stackblitz-labs/pkg.pr.new/blob/main/README.md\n\non:\n push:\n tags: '!**'\n paths:\n - 'typescript-sdk/**'\n pull_request:\n paths:\n - 'typescript-sdk/**'\n workflow_dispatch:\n\ndefaults:\n run:\n shell: bash\n\nenv:\n ACTIONS_RUNNER_DEBUG: true\n NODE_OPTIONS: '--no-warnings'\n\njobs:\n preview:\n name: 'Publish TypeScript SDK Preview'\n runs-on: ['ubuntu-latest']\n steps:\n - name: 'Checkout'\n uses: actions/checkout@v4\n with:\n fetch-depth: 0\n\n - name: 'Setup bun'\n uses: oven-sh/setup-bun@v2\n with:\n bun-version: 'latest'\n\n - name: 'Install Dependencies'\n working-directory: './typescript-sdk'\n run: bun install\n\n - name: 'Build Preview SDK'\n working-directory: './typescript-sdk'\n run: bun run build\n\n - name: 'Publish Preview Version'\n run: |\n bun x pkg-pr-new publish --no-template --comment=update typescript-sdk\n
dataset_sample\yaml\unionlabs_union\.github\workflows\typescript-sdk-preview.yml
typescript-sdk-preview.yml
YAML
1,210
0.8
0
0.095238
awesome-app
552
2025-01-15T20:20:59.707022
GPL-3.0
false
bec2e5240f82e2f21cb06e60bf71aafa
name: 'Publish TypeScript SDK'\n\non:\n push:\n branches:\n - 'main'\n paths:\n - 'typescript-sdk/**'\n tags:\n - 'typescript-sdk-v*'\n workflow_dispatch:\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-in-progress: true\n\ndefaults:\n run:\n shell: bash\n working-directory: './typescript-sdk'\n\nenv:\n ACTIONS_RUNNER_DEBUG: true\n NODE_OPTIONS: '--no-warnings'\n\njobs:\n publish-sdk:\n name: 'Publish to Registries'\n runs-on: ['ubuntu-latest']\n permissions:\n contents: read\n # The OIDC ID token is used for authentication with JSR. \n id-token: write\n steps:\n - name: 'Checkout'\n uses: actions/checkout@v4\n\n - name: 'Setup bun'\n uses: oven-sh/setup-bun@v2\n with:\n bun-version: 'latest'\n registry-url: 'https://registry.npmjs.org'\n\n - name: 'Install Dependencies'\n run: bun install\n\n - name: 'Prechecks'\n run: |\n bun run build\n bun run typecheck\n bun run check-package\n\n - name: 'Publish to JSR'\n run: bun scripts/publish.ts --period patch\n\n - name: 'Publish to NPM'\n env:\n NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}\n NPM_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n run: npm publish --access='public' --no-git-tags\n
dataset_sample\yaml\unionlabs_union\.github\workflows\typescript-sdk-publish.yml
typescript-sdk-publish.yml
YAML
1,531
0.8
0.015625
0.018519
python-kit
711
2023-07-18T02:11:08.789281
Apache-2.0
false
8154a1667ad2c6672eb29b042e1c5190
version: 1\nvalidation: sovereign\naccounts:\n - name: alice\n coins:\n - 20000token\n - 200000000stake\n - name: bob\n coins:\n - 10000token\n - 100000000stake\nclient:\n openapi:\n path: docs/static/openapi.yml\nfaucet:\n name: bob\n coins:\n - 5token\n - 100000stake\nvalidators:\n - name: alice\n bonded: 100000000stake\n - name: validator1\n bonded: 100000000stake\n - name: validator2\n bonded: 200000000stake\n - name: validator3\n bonded: 300000000stake\n
dataset_sample\yaml\unionlabs_union\uniond\config.yml
config.yml
YAML
491
0.7
0
0
react-lib
612
2023-12-04T19:31:24.404835
MIT
false
43aa1a0252ff740a16cbfac9ed3d9bf2
{"id":"github.com/unionlabs/union/uniond","consumes":["application/json"],"produces":["application/json"],"swagger":"2.0","info":{"description":"Chain github.com/unionlabs/union/uniond REST API","title":"HTTP API Console","contact":{"name":"github.com/unionlabs/union/uniond"},"version":"version not set"},"paths":{},"definitions":{"google.protobuf.Any":{"type":"object","properties":{"@type":{"type":"string"}},"additionalProperties":{}},"google.rpc.Status":{"type":"object","properties":{"code":{"type":"integer","format":"int32"},"details":{"type":"array","items":{"type":"object","$ref":"#/definitions/google.protobuf.Any"}},"message":{"type":"string"}}}}}
dataset_sample\yaml\unionlabs_union\uniond\docs\static\openapi.yml
openapi.yml
YAML
660
0.8
0.1
0
python-kit
65
2024-01-12T06:03:01.408472
GPL-3.0
false
b1617667fb63b282daac0ff81e7ca2a0
site_name: Unity ML-Agents Toolkit\nsite_url: https://unity-technologies.github.io/ml-agents/\nrepo_url: https://github.com/Unity-Technologies/ml-agents\nedit_uri: edit/main/docs/\nsite_description: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents.\nsite_author: Unity Technologies\ncopyright: com.unity.ml-agents copyright © 2017 - 2022 Unity Technologies\nnav:\n- Home: index.md\n- ML-Agents Overview: ML-Agents-Overview.md\n- Installation: Installation.md\n- Toolkit Documentation: ML-Agents-Toolkit-Documentation.md\n- Background:\n - Machine Learning: Background-Machine-Learning.md\n - PyTorch: Background-PyTorch.md\n - Unity: Background-Unity.md\n - ELO: ELO-Rating-System.md\n- Interfacing with Unity Builds:\n - Getting started with the Gym API: Python-Gym-API.md\n - Getting started with the PettingZoo API: Python-PettingZoo-API.md\n - Getting started with the LLAPI: Python-LLAPI.md\n- Python API Docs:\n - Gym API Documentation: Python-Gym-API-Documentation.md\n - Petting Zoo Documentation: Python-PettingZoo-API-Documentation.md\n - LLAPI Documentation: Python-LLAPI-Documentation.md\n - On/Off Policy Trainer: Python-On-Off-Policy-Trainer-Documentation.md\n- Tutorials:\n - Customizing Training via Plugins: Training-Plugins.md\n - Custom Trainer Plugin: Tutorial-Custom-Trainer-Plugin.md\n - HuggingFace: Hugging-Face-Integration.md\n- About:\n - FAQs: FAQ.md\n - Limitations: Limitations.md\n - Migrating: Migrating.md\n - Versioning: Versioning.md\ntheme:\n name: material\n logo: images/unity-logo.png\n favicon: images/unity-logo-black.png\n palette:\n - primary: blue\n - accent: light blue\n # Palette toggle for light mode\n - scheme: default\n toggle:\n icon: material/brightness-7\n name: Switch to dark mode\n # Palette toggle for dark mode\n - scheme: slate\n toggle:\n icon: material/brightness-4\n name: Switch to light mode\n\nextra_css:\n - extra.css\nmarkdown_extensions:\n - markdown_include.include:\n base_path: docs\n - attr_list\n
dataset_sample\yaml\Unity-Technologies_ml-agents\mkdocs.yml
mkdocs.yml
YAML
2,162
0.8
0.050847
0.034483
react-lib
730
2025-03-14T15:35:14.330265
Apache-2.0
false
8f98cadb1e587acdeeda3aa8af8f549f
# Configuration for probot-stale - https://github.com/probot/stale\n\n# General configuration\n# Label to use when marking as stale\nstaleLabel: stale\n\n# Only run on issues\nonly: issues\n\n# Issue specific configuration\nissues:\n limitPerRun: 5\n daysUntilStale: 90\n daysUntilClose: 30\n markComment: >\n This issue has been automatically marked as stale because it has not had activity in the\n last 90 days. It will be closed in the next 30 days if no further activity occurs.\n Thank you for your contributions.\n closeComment: >\n This issue has been automatically closed because it has not had activity in the\n last 120 days. If this issue is still valid, please ping a maintainer.\n Thank you for your contributions.\n exemptLabels:\n - request\n - help-wanted\n - announcement\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.github\stale.yml
stale.yml
YAML
798
0.8
0.153846
0.217391
react-lib
690
2024-06-22T09:59:05.823657
GPL-3.0
false
99f4f7c454ccd547c548754aab0f69b2
blank_issues_enabled: false\ncontact_links:\n - name: Discussion / General Questions\n url: https://forum.unity.com/forums/ml-agents.453/\n about: Discussion about ML-Agents, RL algorithms, or game integrations.\n - name: Installation / Setup\n url: https://forum.unity.com/forums/ml-agents.453/\n about: Questions about python installation, initial connection between Unity and training, etc.\n - name: ML-Agents Unity Forum\n url: https://forum.unity.com/forums/ml-agents.453/\n about: Please ask other questions in the ML-Agents Unity Forum.\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
556
0.8
0
0
python-kit
174
2023-10-31T20:44:51.988689
BSD-3-Clause
false
8d0e5710065225abe0a4066629dff518
name: colab\n\non:\n pull_request:\n paths: # This action will only run if the PR modifies a file in one of these directories\n - 'ml-agents-envs/**'\n - 'gym-unity/**'\n - 'colab/**'\n - '.github/workflows/colab.yml'\n push:\n branches:\n - main\n - develop\n - 'release/**'\n workflow_dispatch:\n\njobs:\n colab:\n runs-on: ubuntu-latest\n env:\n COLAB_ALWAYS_INSTALL_XVFB: 1\n QLEARNING_NUM_TRAINING_STEPS: 5\n QLEARNING_NUM_NEW_EXP: 64\n QLEARNING_BUFFER_SIZE: 64\n strategy:\n fail-fast: false\n matrix:\n notebook_path: [Colab_UnityEnvironment_1_Run.ipynb, Colab_UnityEnvironment_2_Train.ipynb, Colab_UnityEnvironment_3_SideChannel.ipynb]\n steps:\n - uses: actions/checkout@v4\n - name: Set up Python\n uses: actions/setup-python@v5\n with:\n python-version: 3.10.12\n - uses: actions/setup-dotnet@v4\n with:\n dotnet-version: '6.0.x'\n - name: Cache pip\n uses: actions/cache@v4\n with:\n # This path is specific to Ubuntu\n path: ~/.cache/pip\n # Look to see if there is a cache hit for the corresponding requirements file\n key: ${{ runner.os }}-pip-${{ hashFiles('ml-agents/setup.py', 'ml-agents-envs/setup.py', 'gym-unity/setup.py', 'colab_requirements.txt') }}\n restore-keys: |\n ${{ runner.os }}-pip-\n ${{ runner.os }}-\n - name: Install dependencies\n run: |\n python -m pip install --upgrade pip\n python -m pip install --upgrade setuptools\n # Install the local checkouts of ml-agents. This will prevent the colab notebooks from installing a released version.\n python -m pip install --progress-bar=off -e ./ml-agents-envs\n python -m pip install --progress-bar=off -e ./ml-agents\n python -m pip install --progress-bar=off -r colab_requirements.txt\n - name: Execute notebook\n run: jupyter nbconvert --to notebook --execute --log-level=DEBUG --ExecutePreprocessor.kernel_name=python3 --output output-${{ matrix.notebook_path }} colab/${{ matrix.notebook_path }}\n - name: Upload colab results\n uses: actions/upload-artifact@v4\n with:\n name: artifacts-${{ matrix.notebook_path }}\n path: |\n colab/output-${{ matrix.notebook_path }}\n # Use always() to always run this step to publish execution results when there are failures\n if: ${{ always() }}\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.github\workflows\colab.yml
colab.yml
YAML
2,408
0.95
0.061538
0.063492
python-kit
683
2023-09-28T04:25:05.986647
BSD-3-Clause
false
9658eba29a6c6110644655aaa20acddb
name: 'Lock Threads'\n\non:\n schedule:\n - cron: '0 0/4 * * *'\n workflow_dispatch:\n\njobs:\n lock:\n runs-on: ubuntu-latest\n permissions:\n issues: write\n pull-requests: write\n steps:\n - uses: actions/stale@v9\n with:\n days-before-issue-stale: 30\n days-before-issue-close: 14\n stale-issue-label: "stale"\n stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."\n close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale. Please open a new issue for related bugs."\n days-before-pr-stale: -1\n days-before-pr-close: -1\n repo-token: ${{ github.token }}\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.github\workflows\lock.yml
lock.yml
YAML
751
0.7
0.125
0
react-lib
495
2023-09-15T07:18:26.169406
Apache-2.0
false
425cfcee9507a048eacd68659c926a7b
name: nightly\n\non:\n schedule:\n - cron: '0 7 * * *' # run at 7 AM UTC == midnight PST\n workflow_dispatch:\n\njobs:\n markdown-link-check-full:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: actions/setup-python@v5\n with:\n python-version: 3.10.12\n - uses: actions/setup-node@v4\n with:\n node-version: '12'\n - name: Install manual dependencies\n run: |\n sudo npm install -g [email protected]\n python -m pip install pre-commit\n pre-commit install\n - name: Run markdown checker\n run: |\n pre-commit run --hook-stage manual markdown-link-check-full --all-files\n full-pytest:\n runs-on: ubuntu-latest\n# TODO: Re-use pytest workflow once https://github.com/github/roadmap/issues/257 is done.\n# steps:\n# - uses: actions/checkout@v4\n# - uses: ./.github/workflows/pytest.yml\n# with:\n# # Run all tests.\n# pytest_markers: "not slow or slow"\n env:\n TEST_ENFORCE_BUFFER_KEY_TYPES: 1\n strategy:\n # If one test in the matrix fails we still want to run the others.\n fail-fast: false\n matrix:\n python-version: [3.10.12]\n include:\n - python-version: 3.10.12\n pip_constraints: test_constraints_version.txt\n steps:\n - uses: actions/checkout@v4\n - name: Set up Python\n uses: actions/setup-python@v5\n with:\n python-version: ${{ matrix.python-version }}\n - name: Cache pip\n uses: actions/cache@v4\n with:\n # This path is specific to Ubuntu\n path: ~/.cache/pip\n # Look to see if there is a cache hit for the corresponding requirements file\n key: ${{ runner.os }}-pip-${{ hashFiles('ml-agents/setup.py', 'ml-agents-envs/setup.py', 'test_requirements.txt', matrix.pip_constraints) }}\n restore-keys: |\n ${{ runner.os }}-pip-\n ${{ runner.os }}-\n - name: Display Python version\n run: python -c "import sys; print(sys.version)"\n - name: Install dependencies\n run: |\n python -m pip install --upgrade pip\n python -m pip install --upgrade setuptools\n python -m pip install --progress-bar=off -e ./ml-agents-envs -c ${{ matrix.pip_constraints }}\n python -m pip install --progress-bar=off -e ./ml-agents -c ${{ matrix.pip_constraints }}\n python -m pip install --progress-bar=off -r test_requirements.txt -c ${{ matrix.pip_constraints }}\n python -m pip install --progress-bar=off -e ./ml-agents-plugin-examples -c ${{ matrix.pip_constraints }}\n - name: Save python dependencies\n run: |\n pip freeze > pip_versions-${{ matrix.python-version }}.txt\n cat pip_versions-${{ matrix.python-version }}.txt\n - name: Run pytest\n run: |\n pytest --cov=ml-agents --cov=ml-agents-envs \\n --cov-report=html --junitxml=junit/test-results-${{ matrix.python-version }}.xml \\n -p no:warnings -v -n 8\n - name: Upload pytest test results\n uses: actions/upload-artifact@v4\n with:\n name: artifacts-${{ matrix.python-version }}\n path: |\n htmlcov\n pip_versions-${{ matrix.python-version }}.txt\n junit/test-results-${{ matrix.python-version }}.xml\n # Use always() to always run this step to publish test results when there are test failures\n if: ${{ always() }}\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.github\workflows\nightly.yml
nightly.yml
YAML
3,370
0.95
0.033333
0.125
node-utils
920
2024-09-15T18:57:42.341455
BSD-3-Clause
false
550bd606a1a856fe87106084d97dffcb
name: pre-commit\n\non:\n pull_request:\n push:\n branches:\n - main\n - develop\n - 'release/**'\n workflow_dispatch:\n\njobs:\n pre-commit:\n runs-on: ubuntu-20.04\n steps:\n - uses: actions/checkout@v4\n - uses: actions/setup-python@v5\n with:\n python-version: 3.10.x\n - uses: ruby/setup-ruby@v1\n env:\n ImageOS: ubuntu20\n with:\n ruby-version: '2.7'\n bundler-cache: true # runs 'bundle install' and caches installed gems automatically\n - uses: actions/setup-dotnet@v4\n with:\n dotnet-version: '8.0.202'\n - name: Install manual dependencies\n run: |\n python -m pip install pre-commit\n pre-commit install\n - name: Run pre-commit\n run: |\n pre-commit run --all-files\n markdown-link-check:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: actions/setup-python@v5\n with:\n python-version: 3.10.x\n - uses: actions/setup-node@v4\n with:\n node-version: '12'\n - name: Install manual dependencies\n # pin markdown-link-check version to support multi-level reference link\n run: |\n sudo npm install -g [email protected]\n python -m pip install pre-commit\n pre-commit install\n - name: Run markdown checker\n run: |\n pre-commit run --hook-stage manual markdown-link-check --all-files\n validate-meta-files:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: actions/setup-python@v5\n with:\n python-version: 3.10.x\n - run: python utils/validate_meta_files.py\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.github\workflows\pre-commit.yml
pre-commit.yml
YAML
1,611
0.8
0
0.016667
awesome-app
13
2023-09-16T09:39:59.945319
GPL-3.0
false
2c37432ca5a496f6d8b7f2f3b0f93583
{% metadata_file .yamato/coverage_tests.metafile %}\n---\n{% for package in coverage_test_packages %}\n{% for editor in coverage_test_editors %}\n{% for platform in coverage_test_platforms %}\n{% capture coverageOptions %} --enable-code-coverage --code-coverage-options 'generateHtmlReport;assemblyFilters:+{{ package.assembly }}'{% endcapture %}\n\ntest_coverage_{{ package.name }}_{{ platform.name }}_{{ editor.version }}_{{ editor.testProject }}:\n name : Coverage {{ package.name }} test {{ editor.version }} on {{ platform.name }} in {{ editor.testProject }}\n agent:\n type: {{ platform.type }}\n image: {{ platform.image }}\n flavor: {{ platform.flavor}}\n commands:\n - npm install [email protected] -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci project test -u {{ editor.version }} --type project-tests --project-path {{ editor.testProject }} --package-filter {{ package.name }} {{ coverageOptions }} --extra-utr-arg "reruncount=2"\n - |\n conda activate python3.10\n python3 ml-agents/tests/yamato/check_coverage_percent.py upm-ci~/test-results/ {{ package.minCoveragePct }}\n artifacts:\n logs:\n paths:\n - "upm-ci~/test-results/**/*"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n triggers:\n cancel_old_ci: true\n {% if platform.name == "linux" %}\n expression: |\n (pull_request.target eq "main" OR\n pull_request.target eq "develop" OR\n pull_request.target match "release.+") AND\n NOT pull_request.draft AND\n (pull_request.changes.any match "com.unity.ml-agents/**" OR\n pull_request.changes.any match " {{ editor.testProject }}/**" OR\n {% if package.name == "com.unity.ml-agents.extensions" %}\n pull_request.changes.any match "com.unity.ml-agents.extensions/**" OR\n {% endif %}\n pull_request.changes.any match ".yamato/com.unity.ml-agents-coverage.yml")\n {% endif %}\n{% endfor %}\n{% endfor %}\n{% endfor %}\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\com.unity.ml-agents-coverage.yml
com.unity.ml-agents-coverage.yml
YAML
2,120
0.8
0.116279
0
vue-tools
433
2023-09-19T22:16:22.615206
Apache-2.0
false
a03e7d14cfa62a1567796932a2716339
pack:\n name: Pack\n agent:\n type: Unity::VM\n image: ml-agents/ml-agents-ubuntu-18.04:latest\n flavor: b1.small\n commands:\n - |\n eval "$($HOME/anaconda/bin/conda shell.bash hook)"\n conda activate python3.10\n python3 -m pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade\n unity-downloader-cli -u 2023.2 -c editor --wait --fast\n ./.Editor/Unity -projectPath Project -batchMode -executeMethod Unity.MLAgents.SampleExporter.ExportCuratedSamples -logFile -\n npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n upm-ci project pack --project-path Project\n artifacts:\n packages:\n paths:\n - "upm-ci~/packages/**/*"\n triggers:\n cancel_old_ci: true\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\com.unity.ml-agents-pack.yml
com.unity.ml-agents-pack.yml
YAML
853
0.8
0
0
react-lib
388
2024-09-03T09:54:04.772028
GPL-3.0
false
9095c39402d4b4a38066c37a262db16a
#disabling mac perf tests until utr issue is resolved.\n#test_editors:\n# - version: 2023.2\n#---\n#{% for editor in test_editors %}\n#Run_Mac_Perfomance_Tests{{ editor.version }}:\n# name: Run Mac Performance Tests {{ editor.version }}\n# agent:\n# type: Unity::VM::osx\n# image: package-ci/macos-13:v4\n# flavor: b1.large\n# variables:\n# UNITY_VERSION: {{ editor.version }}\n# commands:\n# - python3 -m pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade\n# - unity-downloader-cli -u {{ editor.version }} -c editor --wait --fast\n# - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr\n# - chmod +x ./utr\n# - ./utr --suite=editor --platform=StandaloneOSX --editor-location=.Editor --testproject=PerformanceProject --artifacts_path=build/test-results --report-performance-data --performance-project-id=com.unity.ml-agents --zero-tests-are-ok=1\n# triggers:\n# cancel_old_ci: true\n# recurring:\n# - branch: develop\n# frequency: daily\n# artifacts:\n# logs:\n# paths:\n# - "build/test-results/**"\n# - "*.log"\n#{% endfor %}\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\com.unity.ml-agents-performance.yml
com.unity.ml-agents-performance.yml
YAML
1,206
0.8
0.033333
1
vue-tools
145
2025-01-16T02:19:27.810464
GPL-3.0
false
50782ffeec7b5158bb7f347a3c5fdf79
test_editors:\n - version: 2023.2\ntest_platforms:\n - name: win\n type: Unity::VM\n image: package-ci/win11:v4\n flavor: b1.large\n---\n\n{% for editor in test_editors %}\n{% for platform in test_platforms %}\npromotion_test_{{ platform.name }}_{{ editor.version }}:\n name : Promotion Test {{ editor.version }} on {{ platform.name }}\n agent:\n type: {{ platform.type }}\n image: {{ platform.image }}\n flavor: {{ platform.flavor}}\n variables:\n UPMCI_PROMOTION: 1\n commands:\n - npm install [email protected] -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci package test --unity-version {{ editor.version }} --package-path com.unity.ml-agents\n artifacts:\n logs:\n paths:\n - "upm-ci~/test-results/**/*"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n{% endfor %}\n{% endfor %}\n\npromotion_test_trigger:\n name: Promotion Tests Trigger\n dependencies:\n{% for editor in test_editors %}\n{% for platform in test_platforms %}\n - .yamato/com.unity.ml-agents-promotion.yml#promotion_test_{{platform.name}}_{{editor.version}}\n{% endfor %}\n{% endfor %}\n\n\npromote:\n name: Promote to Production\n agent:\n type: Unity::VM\n image: package-ci/win11:v4\n flavor: b1.large\n variables:\n UPMCI_PROMOTION: 1\n commands:\n - npm install [email protected] -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci package promote --package-path com.unity.ml-agents\n# triggers:\n# tags:\n# only:\n# - /^(r|R)elease-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/\n artifacts:\n artifacts:\n paths:\n - "upm-ci~/packages/*.tgz"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n{% for editor in test_editors %}\n{% for platform in test_platforms %}\n - .yamato/com.unity.ml-agents-promotion.yml#promotion_test_{{ platform.name }}_{{ editor.version }}\n{% endfor %}\n{% endfor %}\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\com.unity.ml-agents-promotion.yml
com.unity.ml-agents-promotion.yml
YAML
1,948
0.8
0.089552
0.063492
awesome-app
472
2023-12-31T16:12:45.408867
GPL-3.0
false
7c994affd808026b2a9f86a9ae9d1487
publish:\n name: Publish ML-Agents to Internal Registry\n agent:\n type: Unity::VM\n image: package-ci/win11:v4\n flavor: b1.large\n variables:\n UPMCI_ENABLE_PACKAGE_SIGNING: 1\n commands:\n - npm install [email protected] -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n - upm-ci package publish --package-path com.unity.ml-agents\n triggers:\n cancel_old_ci: true\n# tags:\n# only:\n# - /^(r|R)(c|C)-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/\n artifacts:\n artifacts:\n paths:\n - "upm-ci~/packages/*.tgz"\n dependencies:\n - .yamato/com.unity.ml-agents-pack.yml#pack\n - .yamato/com.unity.ml-agents-test.yml#all_package_tests\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\com.unity.ml-agents-publish.yml
com.unity.ml-agents-publish.yml
YAML
711
0.8
0
0.130435
awesome-app
770
2023-10-10T00:25:18.328661
MIT
false
dbab3a5f0ecb3cf0db145170794858ab
#csharp:\n# name: Sonarqube Scan for ml-agents python repo\n# agent:\n# type: Unity::metal::macmini\n# image: package-ci/mac:v1.8.1-822785\n# flavor: m1.mac\n# variables:\n# SONARQUBE_PROJECT_KEY: ai-ml-agents-toolkit\n# TARGET_BRANCH: develop\n# commands:\n# - npm install shellcheck --save-dev\n# - npm install [email protected] -g --registry https://artifactory.prd.it.unity3d.com/artifactory/api/npm/upm-npm\n# - curl https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.7.0.2747-macosx.zip -o sonar-scanner-cli-macosx.zip -L\n# - unzip sonar-scanner-cli-macosx.zip -d ~/sonar-scanner-cli\n# - ~/sonar-scanner-cli/sonar-scanner-4.7.0.2747-macosx/bin/sonar-scanner -Dsonar.projectKey=$SONARQUBE_PROJECT_KEY -Dsonar.sources=ml-agents-env -Dsonar.sources=ml-agents -Dsonar.sources=ml-agents-plugin-examples -Dsonar.sources=ml-agents-trainer-plugin -Dsonar.sources=utils -Dsonar.host.url=$SONARQUBE_URL -Dsonar.login=$SONARQUBE_TOKEN -Dsonar.branch.name=$TARGET_BRANCH -Dsonar.scm.provider=git\n# triggers:\n# cancel_old_ci: true\n# expression: |\n# ((pull_request.target eq "main" OR pull_request.target eq "develop" OR pull_request.target match "release.+")\n# AND NOT pull_request.push.changes.all match "**/*.md") OR\n# (push.branch eq "main" OR push.branch eq "develop")\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\sonar-python-package.yml
sonar-python-package.yml
YAML
1,345
0.8
0.047619
1
node-utils
812
2023-10-31T09:51:54.651613
Apache-2.0
false
85c4f76aeb626888e8332a35411cb213
# Auto-generated by Recipe Engine, do not modify manually.\n# This job is generated by the wrench recipe engine module, see find the docs here: .\n\n# upm-ci validation tests for API Validation - ml-agents - 2023.2 - windows (2023.2 - Windows).\napi_validation_-_ml-agents_-_2023_2_-_windows:\n name: API Validation - ml-agents - 2023.2 - windows\n agent:\n image: package-ci/win10:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl %WRENCH_LOCAL_APV_DOWNLOAD_URL% -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n timeout: 20\n retries: 10\n - command: unity-downloader-cli -u 2023.2 -c Editor --fast\n timeout: 10\n retries: 3\n - command: python PythonScripts/PackageJsonCondersor.py\n timeout: 1\n retries: 0\n - command: upm-ci package test -u .Editor --package-path com.unity.ml-agents --type vetting-tests || exit 0\n timeout: 30\n retries: 0\n - command: python PythonScripts/parse_upm_ci_results.py --package-path=com.unity.ml-agents\n timeout: 2\n retries: 0\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/**/*\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n triggers:\n expression: push.branch match "^release/.*"\n cancel_old_ci: true\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\wrench\api-validation-jobs.yml
api-validation-jobs.yml
YAML
1,628
0.8
0.021277
0.066667
awesome-app
812
2024-08-12T21:20:04.341965
BSD-3-Clause
false
296f58e20c014542c689c9d5e1278bea
# Auto-generated by Recipe Engine, do not modify manually.\n# This job is generated by the wrench recipe engine module, see find the docs here: .\n\n# Pack and Sign ML Agents\npackage_pack_-_ml-agents:\n name: Package Pack - ml-agents\n agent:\n image: package-ci/ubuntu-20.04:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n timeout: 20\n retries: 10\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: upm-ci package pack --package-path com.unity.ml-agents\n - command: cp upm-ci~/packages/packages.json upm-ci~/packages/com.unity.ml-agents_packages.json\n artifacts:\n packages:\n paths:\n - upm-ci~/packages/**/*\n variables:\n UPMCI_ACK_LARGE_PACKAGE: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n\n\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\wrench\package-pack-jobs.yml
package-pack-jobs.yml
YAML
1,062
0.8
0
0.107143
awesome-app
225
2025-01-03T13:39:30.312766
Apache-2.0
false
87e435cf23d40cb16e45202ee4673286
# Auto-generated by Recipe Engine, do not modify manually.\n# This job is generated by the wrench recipe engine module, see find the docs here: .\n\n# Parent Preview APV Job.\nall_preview_apv_jobs:\n name: All Preview APV Jobs\n dependencies:\n - path: .yamato/wrench/preview-a-p-v.yml#preview_apv_-_6000_0_-_macos\n - path: .yamato/wrench/preview-a-p-v.yml#preview_apv_-_6000_0_-_ubuntu\n - path: .yamato/wrench/preview-a-p-v.yml#preview_apv_-_6000_0_-_windows\n triggers:\n expression: push.branch match "^release/.*"\n cancel_old_ci: true\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n# Functional tests for dependents found in the latest 6000.0 manifest (MacOS).\npreview_apv_-_6000_0_-_macos:\n name: Preview APV - 6000.0 - macos\n agent:\n image: package-ci/macos-13:default\n type: Unity::VM::osx\n flavor: b1.xlarge\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n timeout: 20\n retries: 10\n - command: unity-downloader-cli -u 6000.0 -c Editor --fast\n timeout: 10\n retries: 3\n - command: python PythonScripts/preview_apv.py --wrench-config=.yamato/wrench/wrench_config.json --editor-version=6000.0 --testsuite=editor,playmode --artifacts-path=PreviewApvArtifacts~\n - command: echo 'Skipping Editor Manifest Validator as it is only supported on Windows'\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n logs:\n paths:\n - '*.log'\n - '*.xml'\n - upm-ci~/test-results/**/*\n - upm-ci~/temp/*/Logs/**\n - upm-ci~/temp/*/Library/*.log\n - upm-ci~/temp/*/*.log\n - upm-ci~/temp/Builds/*.log\n packages:\n paths:\n - upm-ci~/packages/**/*\n PreviewAPVResults:\n paths:\n - PreviewApvArtifacts~/**\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n# Functional tests for dependents found in the latest 6000.0 manifest (Ubuntu).\npreview_apv_-_6000_0_-_ubuntu:\n name: Preview APV - 6000.0 - ubuntu\n agent:\n image: package-ci/ubuntu-20.04:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n timeout: 20\n retries: 10\n - command: unity-downloader-cli -u 6000.0 -c Editor --fast\n timeout: 10\n retries: 3\n - command: python PythonScripts/preview_apv.py --wrench-config=.yamato/wrench/wrench_config.json --editor-version=6000.0 --testsuite=editor,playmode --artifacts-path=PreviewApvArtifacts~\n - command: echo 'Skipping Editor Manifest Validator as it is only supported on Windows'\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n logs:\n paths:\n - '*.log'\n - '*.xml'\n - upm-ci~/test-results/**/*\n - upm-ci~/temp/*/Logs/**\n - upm-ci~/temp/*/Library/*.log\n - upm-ci~/temp/*/*.log\n - upm-ci~/temp/Builds/*.log\n packages:\n paths:\n - upm-ci~/packages/**/*\n PreviewAPVResults:\n paths:\n - PreviewApvArtifacts~/**\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n# Functional tests for dependents found in the latest 6000.0 manifest (Windows).\npreview_apv_-_6000_0_-_windows:\n name: Preview APV - 6000.0 - windows\n agent:\n image: package-ci/win10:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl %WRENCH_LOCAL_APV_DOWNLOAD_URL% -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm\n timeout: 20\n retries: 10\n - command: unity-downloader-cli -u 6000.0 -c Editor --fast\n timeout: 10\n retries: 3\n - command: python PythonScripts/preview_apv.py --wrench-config=.yamato/wrench/wrench_config.json --editor-version=6000.0 --testsuite=editor,playmode --artifacts-path=PreviewApvArtifacts~\n - command: python PythonScripts/editor_manifest_validator.py --version=6000.0 --wrench-config=.yamato/wrench/wrench_config.json\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n logs:\n paths:\n - '*.log'\n - '*.xml'\n - upm-ci~/test-results/**/*\n - upm-ci~/temp/*/Logs/**\n - upm-ci~/temp/*/Library/*.log\n - upm-ci~/temp/*/*.log\n - upm-ci~/temp/Builds/*.log\n packages:\n paths:\n - upm-ci~/packages/**/*\n PreviewAPVResults:\n paths:\n - PreviewApvArtifacts~/**\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\wrench\preview-a-p-v.yml
preview-a-p-v.yml
YAML
5,557
0.8
0.018293
0.037736
node-utils
931
2023-08-21T05:50:23.325882
Apache-2.0
false
911e9f9e3eec36f82930afac69aaf9b0
# Auto-generated by Recipe Engine, do not modify manually.\n# This job is generated by the wrench recipe engine module, see find the docs here: .\n\n# Publish Dry Run for ml-agents to https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-npm\npublish_dry_run_ml-agents:\n name: Publish Dry Run ml-agents\n agent:\n image: package-ci/ubuntu-20.04:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: upm-pvp publish --packages "upm-ci~/packages/*.tgz" --evidence results --dry-run\n artifacts:\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_2023_2_-_macos\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-2023.2-macos\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-2023.2-macos\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_2023_2_-_ubuntu\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-2023.2-ubuntu\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-2023.2-ubuntu\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_2023_2_-_windows\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-2023.2-windows\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-2023.2-windows\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_6000_0_-_macos\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-6000.0-macos\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-6000.0-macos\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_6000_0_-_ubuntu\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-6000.0-ubuntu\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-6000.0-ubuntu\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_6000_0_-_windows\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-6000.0-windows\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-6000.0-windows\n unzip: true\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n triggers:\n expression: push.branch match "^release/.*"\n cancel_old_ci: true\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n# Publish for ml-agents to https://artifactory-slo.bf.unity3d.com/artifactory/api/npm/upm-npm\npublish_ml-agents:\n name: Publish ml-agents\n agent:\n image: package-ci/ubuntu-20.04:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: python PythonScripts/ignore_existing_package_failure.py\n artifacts:\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_2023_2_-_macos\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-2023.2-macos\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-2023.2-macos\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_2023_2_-_ubuntu\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-2023.2-ubuntu\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-2023.2-ubuntu\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_2023_2_-_windows\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-2023.2-windows\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-2023.2-windows\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_6000_0_-_macos\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-6000.0-macos\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-6000.0-macos\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_6000_0_-_ubuntu\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-6000.0-ubuntu\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-6000.0-ubuntu\n unzip: true\n - path: .yamato/wrench/validation-jobs.yml#validate_-_ml-agents_-_6000_0_-_windows\n specific_options:\n UTR:\n location: results/UTR/validate-ml-agents-6000.0-windows\n unzip: true\n pvp-results:\n location: results/pvp/validate-ml-agents-6000.0-windows\n unzip: true\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\wrench\promotion-jobs.yml
promotion-jobs.yml
YAML
5,517
0.8
0.013158
0.026846
python-kit
774
2024-08-19T21:11:08.573598
MIT
false
38ac1cd5f981ee17d3533709c59fc43d
# Auto-generated by Recipe Engine, do not modify manually.\n# This job is generated by the wrench recipe engine module, see find the docs here: .\n\n# PVP Editor and Playmode tests for Validate - ml-agents - 2023.2 - macos (2023.2 - MacOS).\nvalidate_-_ml-agents_-_2023_2_-_macos:\n name: Validate - ml-agents - 2023.2 - macos\n agent:\n image: package-ci/macos-13:default\n type: Unity::VM::osx\n flavor: b1.xlarge\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: unity-downloader-cli -u 2023.2 -c Editor --fast\n timeout: 10\n retries: 3\n - command: upm-pvp create-test-project test-ml-agents --packages "upm-ci~/packages/*.tgz" --unity .Editor\n timeout: 10\n retries: 1\n - command: echo No internal packages to add.\n - command: upm-pvp test --unity .Editor --packages "upm-ci~/packages/*.tgz" --results upm-ci~/pvp\n timeout: 20\n retries: 0\n - command: upm-pvp require "PVP-160-1" --results upm-ci~/pvp --exemptions upm-ci~/pvp/failures.json\n timeout: 5\n retries: 0\n - command: echo No additional PVP profiles to declared to check.\n - command: UnifiedTestRunner --testproject=test-ml-agents --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --artifacts_path=artifacts --suite=Editor --suite=Playmode "--ff={ops.upmpvpevidence.enable=true}"\n timeout: 30\n retries: 1\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/packages/**/*\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n UTR:\n paths:\n - '*.log'\n - '*.xml'\n - artifacts/**/*\n - test-ml-agents/Logs/**\n - test-ml-agents/Library/*.log\n - test-ml-agents/*.log\n - test-ml-agents/Builds/*.log\n - build/test-results/**\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n labels:\n - Packages:ml-agents\n\n# PVP Editor and Playmode tests for Validate - ml-agents - 2023.2 - ubuntu (2023.2 - Ubuntu).\nvalidate_-_ml-agents_-_2023_2_-_ubuntu:\n name: Validate - ml-agents - 2023.2 - ubuntu\n agent:\n image: package-ci/ubuntu-20.04:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: unity-downloader-cli -u 2023.2 -c Editor --fast\n timeout: 10\n retries: 3\n - command: upm-pvp create-test-project test-ml-agents --packages "upm-ci~/packages/*.tgz" --unity .Editor\n timeout: 10\n retries: 1\n - command: echo No internal packages to add.\n - command: upm-pvp test --unity .Editor --packages "upm-ci~/packages/*.tgz" --results upm-ci~/pvp\n timeout: 20\n retries: 0\n - command: upm-pvp require "PVP-160-1" --results upm-ci~/pvp --exemptions upm-ci~/pvp/failures.json\n timeout: 5\n retries: 0\n - command: echo No additional PVP profiles to declared to check.\n - command: UnifiedTestRunner --testproject=test-ml-agents --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --artifacts_path=artifacts --suite=Editor --suite=Playmode "--ff={ops.upmpvpevidence.enable=true}"\n timeout: 30\n retries: 1\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/packages/**/*\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n UTR:\n paths:\n - '*.log'\n - '*.xml'\n - artifacts/**/*\n - test-ml-agents/Logs/**\n - test-ml-agents/Library/*.log\n - test-ml-agents/*.log\n - test-ml-agents/Builds/*.log\n - build/test-results/**\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n labels:\n - Packages:ml-agents\n\n# PVP Editor and Playmode tests for Validate - ml-agents - 2023.2 - windows (2023.2 - Windows).\nvalidate_-_ml-agents_-_2023_2_-_windows:\n name: Validate - ml-agents - 2023.2 - windows\n agent:\n image: package-ci/win10:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl %WRENCH_LOCAL_APV_DOWNLOAD_URL% -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: unity-downloader-cli -u 2023.2 -c Editor --fast\n timeout: 10\n retries: 3\n - command: upm-pvp create-test-project test-ml-agents --packages "upm-ci~/packages/*.tgz" --unity .Editor\n timeout: 10\n retries: 1\n - command: echo No internal packages to add.\n - command: upm-pvp test --unity .Editor --packages "upm-ci~/packages/*.tgz" --results upm-ci~/pvp\n timeout: 20\n retries: 0\n - command: echo Skipping check for PVP-160-1 as there is a bug on Windows. https://jira.unity3d.com/browse/PETS-1462\n - command: echo No additional PVP profiles to declared to check.\n - command: UnifiedTestRunner.exe --testproject=test-ml-agents --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --artifacts_path=artifacts --suite=Editor --suite=Playmode "--ff={ops.upmpvpevidence.enable=true}"\n timeout: 30\n retries: 1\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/packages/**/*\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n UTR:\n paths:\n - '*.log'\n - '*.xml'\n - artifacts/**/*\n - test-ml-agents/Logs/**\n - test-ml-agents/Library/*.log\n - test-ml-agents/*.log\n - test-ml-agents/Builds/*.log\n - build/test-results/**\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n labels:\n - Packages:ml-agents\n\n# PVP Editor and Playmode tests for Validate - ml-agents - 6000.0 - macos (6000.0 - MacOS).\nvalidate_-_ml-agents_-_6000_0_-_macos:\n name: Validate - ml-agents - 6000.0 - macos\n agent:\n image: package-ci/macos-13:default\n type: Unity::VM::osx\n flavor: b1.xlarge\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: unity-downloader-cli -u 6000.0 -c Editor --fast\n timeout: 10\n retries: 3\n - command: upm-pvp create-test-project test-ml-agents --packages "upm-ci~/packages/*.tgz" --unity .Editor\n timeout: 10\n retries: 1\n - command: echo No internal packages to add.\n - command: upm-pvp test --unity .Editor --packages "upm-ci~/packages/*.tgz" --results upm-ci~/pvp\n timeout: 20\n retries: 0\n - command: upm-pvp require "PVP-160-1" --results upm-ci~/pvp --exemptions upm-ci~/pvp/failures.json\n timeout: 5\n retries: 0\n - command: echo No additional PVP profiles to declared to check.\n - command: UnifiedTestRunner --testproject=test-ml-agents --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --artifacts_path=artifacts --suite=Editor --suite=Playmode "--ff={ops.upmpvpevidence.enable=true}"\n timeout: 30\n retries: 1\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/packages/**/*\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n UTR:\n paths:\n - '*.log'\n - '*.xml'\n - artifacts/**/*\n - test-ml-agents/Logs/**\n - test-ml-agents/Library/*.log\n - test-ml-agents/*.log\n - test-ml-agents/Builds/*.log\n - build/test-results/**\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n labels:\n - Packages:ml-agents\n\n# PVP Editor and Playmode tests for Validate - ml-agents - 6000.0 - ubuntu (6000.0 - Ubuntu).\nvalidate_-_ml-agents_-_6000_0_-_ubuntu:\n name: Validate - ml-agents - 6000.0 - ubuntu\n agent:\n image: package-ci/ubuntu-20.04:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl $WRENCH_LOCAL_APV_DOWNLOAD_URL -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: unity-downloader-cli -u 6000.0 -c Editor --fast\n timeout: 10\n retries: 3\n - command: upm-pvp create-test-project test-ml-agents --packages "upm-ci~/packages/*.tgz" --unity .Editor\n timeout: 10\n retries: 1\n - command: echo No internal packages to add.\n - command: upm-pvp test --unity .Editor --packages "upm-ci~/packages/*.tgz" --results upm-ci~/pvp\n timeout: 20\n retries: 0\n - command: upm-pvp require "PVP-160-1" --results upm-ci~/pvp --exemptions upm-ci~/pvp/failures.json\n timeout: 5\n retries: 0\n - command: echo No additional PVP profiles to declared to check.\n - command: UnifiedTestRunner --testproject=test-ml-agents --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --artifacts_path=artifacts --suite=Editor --suite=Playmode "--ff={ops.upmpvpevidence.enable=true}"\n timeout: 30\n retries: 1\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/packages/**/*\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n UTR:\n paths:\n - '*.log'\n - '*.xml'\n - artifacts/**/*\n - test-ml-agents/Logs/**\n - test-ml-agents/Library/*.log\n - test-ml-agents/*.log\n - test-ml-agents/Builds/*.log\n - build/test-results/**\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n labels:\n - Packages:ml-agents\n\n# PVP Editor and Playmode tests for Validate - ml-agents - 6000.0 - windows (6000.0 - Windows).\nvalidate_-_ml-agents_-_6000_0_-_windows:\n name: Validate - ml-agents - 6000.0 - windows\n agent:\n image: package-ci/win10:default\n type: Unity::VM\n flavor: b1.large\n commands:\n - command: curl %WRENCH_LOCAL_APV_DOWNLOAD_URL% -o wrench-localapv.zip\n - command: 7z x wrench-localapv.zip\n - command: python PythonScripts/print_machine_info.py\n - command: unity-downloader-cli -u 6000.0 -c Editor --fast\n timeout: 10\n retries: 3\n - command: upm-pvp create-test-project test-ml-agents --packages "upm-ci~/packages/*.tgz" --unity .Editor\n timeout: 10\n retries: 1\n - command: echo No internal packages to add.\n - command: upm-pvp test --unity .Editor --packages "upm-ci~/packages/*.tgz" --results upm-ci~/pvp\n timeout: 20\n retries: 0\n - command: echo Skipping check for PVP-160-1 as there is a bug on Windows. https://jira.unity3d.com/browse/PETS-1462\n - command: echo No additional PVP profiles to declared to check.\n - command: UnifiedTestRunner.exe --testproject=test-ml-agents --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --artifacts_path=artifacts --suite=Editor --suite=Playmode "--ff={ops.upmpvpevidence.enable=true}"\n timeout: 30\n retries: 1\n artifacts:\n Crash Dumps:\n paths:\n - CrashDumps/**\n packages:\n paths:\n - upm-ci~/packages/**/*\n pvp-results:\n paths:\n - upm-ci~/pvp/**/*\n UTR:\n paths:\n - '*.log'\n - '*.xml'\n - artifacts/**/*\n - test-ml-agents/Logs/**\n - test-ml-agents/Library/*.log\n - test-ml-agents/*.log\n - test-ml-agents/Builds/*.log\n - build/test-results/**\n dependencies:\n - path: .yamato/wrench/package-pack-jobs.yml#package_pack_-_ml-agents\n variables:\n UPMPVP_ACK_UPMPVP_DOES_NO_API_VALIDATION: 1\n UPMPVP_CONTEXT_WRENCH: 0.10.5.0\n metadata:\n Job Maintainers: '#rm-packageworks'\n Wrench: 0.10.5.0\n labels:\n - Packages:ml-agents\n\n
dataset_sample\yaml\Unity-Technologies_ml-agents\.yamato\wrench\validation-jobs.yml
validation-jobs.yml
YAML
12,270
0.95
0.022663
0.023121
react-lib
180
2023-12-27T15:18:38.467876
Apache-2.0
false
70f26070d8ecf1038d4f22ac1adc778d
apiRules:\n- exclude:\n uidRegex: .*Test.*\n type: Namespace\n- exclude:\n uidRegex: ^Unity\.MLAgents\.CommunicatorObjects$\n type: Namespace\n- exclude:\n uidRegex: ^Unity\.MLAgents\.Editor$\n type: Namespace\n- exclude:\n uidRegex: ^Unity\.MLAgentsExamples$\n type: Namespace\n\n
dataset_sample\yaml\Unity-Technologies_ml-agents\com.unity.ml-agents\Documentation~\filter.yml
filter.yml
YAML
291
0.7
0
0
react-lib
166
2025-06-27T07:29:29.563577
BSD-3-Clause
false
0ad34ab5d8db60d0715beaa3a0d58b0c
---\nexclude_paths:\n - '**/*.g.cs'\n - 'src/SamplesApp/**'\n - '**/tsBindings/*.ts'\n - 'doc/**'\n - 'src/Uno.UI/Microsoft/UI/Xaml/Controls/Repeater/**'\n - 'src/Uno.UI/UI/Xaml/Controls/CalendarView/**'\n - 'src/Uno.UI/DirectUI/**'\n
dataset_sample\yaml\unoplatform_uno\.codacy.yml
.codacy.yml
YAML
232
0.8
0
0
awesome-app
568
2023-10-15T08:14:51.807873
MIT
false
3993ec270dd69956f99dc31514162771
image:\n file: build/gitpod/.gitpod.Dockerfile\n\nports:\n # Default port for the SampleApp\n - port: 8000\n onOpen: open-preview\n\ntasks:\n # Mitigation for https://github.com/gitpod-io/gitpod/issues/6460 \n - name: Postinstall .NET and dev certificates\n init: |\n mkdir -p $DOTNET_ROOT && curl -fsSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel $DOTNET_VERSION --install-dir $DOTNET_ROOT \n mkdir -p $DOTNET_ROOT && curl -fsSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 7.0.302 --install-dir $DOTNET_ROOT \n dotnet dev-certs https \n build/gitpod/build-skia.sh\n build/gitpod/build-wasm.sh\n\n - name: SampleApp Static Files Server\n before: export NUGET_PACKAGES=/workspace/.nuget\n openMode: tab-after\n command: echo "once you've built the sources run build/gitpod/serve-sampleapp-wasm.sh"\n\n - name: Build\n before: export NUGET_PACKAGES=/workspace/.nuget\n command: echo -e "Follow the guide here https://github.com/unoplatform/uno/tree/master/doc/articles/features/working-with-gitpod.md" && echo && echo "Build Uno with build/gitpod/build-wasm.sh"\n openMode: tab-after\n\ngithub:\n prebuilds:\n # enable for the master/default branch (defaults to true)\n master: true\n # enable for all branches in this repo (defaults to false)\n branches: false\n # enable for pull requests coming from this repo (defaults to true)\n pullRequests: true\n # enable for pull requests coming from forks (defaults to false)\n pullRequestsFromForks: true\n # add a check to pull requests (defaults to true)\n addCheck: true\n # add a "Review in Gitpod" button as a comment to pull requests (defaults to false)\n addComment: true\n # add a "Review in Gitpod" button to the pull request's description (defaults to false)\n addBadge: false\n # add a label once the prebuild is ready to pull requests (defaults to false)\n addLabel: false\n
dataset_sample\yaml\unoplatform_uno\.gitpod.yml
.gitpod.yml
YAML
1,930
0.8
0.130435
0.243902
vue-tools
245
2024-03-07T09:09:43.066938
BSD-3-Clause
false
b92a32d4027762044aa5268fcb2e3949
pull_request_rules:\n\n - name: automatic strict merge when CI passes, has 2 reviews, no requests for change and is labeled 'ready-to-merge' unless labelled 'do-not-merge/breaking-change' or 'do-not-merge/work-in-progress'\n conditions:\n # Only pull-requests sent to the master branch\n - base=master\n\n # All Azure builds should be green:\n - status-success=Uno.UI - CI\n\n # CLA check must pass:\n #- "status-success=license/cla"\n\n # Note that this only matches people with write / admin access to the repo,\n # see <https://doc.mergify.io/conditions.html#attribute-list>\n - "#approved-reviews-by>=2"\n - "#changes-requested-reviews-by=0"\n\n # Pull-request must be labeled with:\n - label=ready-to-merge\n\n # Do not automatically merge pull-requests that are labelled as do-not-merge\n # see <https://doc.mergify.io/examples.html#id6>\n - label!=do-not-merge/breaking-change\n - label!=do-not-merge/work-in-progress\n\n # Note: mergify cannot break branch protection rules\n actions:\n merge:\n method: merge\n # https://doc.mergify.io/strict-workflow.html\n # https://doc.mergify.io/actions.html#label\n
dataset_sample\yaml\unoplatform_uno\.mergify.yml
.mergify.yml
YAML
1,197
0.8
0.03125
0.48
python-kit
785
2024-06-25T17:24:23.163686
BSD-3-Clause
false
f8abf9e6682924bfe7991f7556fe74b6
trigger:\n branches:\n include:\n - master\n - release/beta/*\n - release/stable/*\n - feature/*\n - legacy/*\n\npr: \n branches:\n include:\n - master\n - release/beta/*\n - release/stable/*\n - feature/*\n - legacy/*\n\nvariables:\n windowsScaledPool: 'Windows2022-20241021-1'\n linuxVMImage: 'ubuntu-22.04'\n\n enable_dotnet_cache: true\n GlobalUnoCheckVersion: '1.31.0-dev.12'\n\nstages:\n- template: build/ci/.azure-devops-stages-docs.yml\n
dataset_sample\yaml\unoplatform_uno\.vsts-ci-docs.yml
.vsts-ci-docs.yml
YAML
480
0.8
0
0
react-lib
329
2024-02-26T00:22:11.920420
BSD-3-Clause
false
53a6e0359c0033cc83d47e664932c8e9
trigger:\n branches:\n include:\n - master\n - release/beta/*\n - release/stable/*\n - feature/*\n - legacy/*\n \n paths:\n include:\n - '/'\n exclude:\n - .dependabot/\n - .github/\n # don't trigger the CI if only docs files are changed\n - doc/*\n - '**/*.md'\n - '*.md'\n - 'build/cSpell.json'\n - 'build/.markdownlint.json'\n \npr: \n branches:\n include:\n - master\n - release/beta/*\n - release/stable/*\n - feature/*\n - legacy/*\n \n paths:\n include:\n - '/'\n exclude:\n - .dependabot/\n - .github/\n # don't trigger the CI if only docs files are changed\n - doc/*\n - '**/*.md'\n - '*.md'\n - 'build/cSpell.json'\n - 'build/.markdownlint.json'\n\nresources:\n containers:\n - container: nv-bionic-wasm\n image: unoplatform/wasm-build:3.0\n # Ensures that Chromium has enough room to avoid net::ERR_INSUFFICIENT_RESOURCES errors\n options: "--shm-size=2gb"\n\nvariables:\n DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true\n windows2019HostedVMImage: 'windows-2019'\n windows2022HostedVMImage: 'windows-2022'\n windowsScaledPool: 'Windows2022-20241021-1'\n linuxVMImage: 'ubuntu-22.04'\n linuxScaledPool: 'Ubuntu2204-20230918'\n macOSVMImage: 'macOS-15'\n macOSVMImage_UITests: 'macOS-14'\n xCodeRoot: '/Applications/Xcode_16.2.app'\n xCodeRoot_iOS_UITests: '/Applications/Xcode_15.3.app'\n\n # Offline validation to improve build performance\n NUGET_CERT_REVOCATION_MODE: offline\n\n # https://github.com/microsoft/azure-pipelines-tasks/issues/11864\n #enable_package_cache: true\n\n enable_dotnet_cache: true\n GlobalUnoCheckVersion: '1.31.0-dev.12'\n\nstages:\n- template: build/ci/.azure-devops-stages.yml\n
dataset_sample\yaml\unoplatform_uno\.vsts-ci.yml
.vsts-ci.yml
YAML
1,704
0.8
0.027027
0.092308
python-kit
479
2023-12-11T07:09:39.094042
GPL-3.0
false
d9822c70ee13bb61539578921d2e8429
# Configuration for welcome - https://github.com/behaviorbot/welcome\n\n## Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome\n\n# Comment to be posted to on first time issues\n#newIssueWelcomeComment: >\n# Thanks for opening your first issue here! Be sure to follow the issue template!\n\n## Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome\n\n# Comment to be posted to on PRs from first time contributors in your repository\n#newPRWelcomeComment: >\n# Thanks for opening this pull request! Please check out our contributing guidelines.\n\n## Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge\n\n# Comment to be posted to on pull requests merged by a first time user\nfirstPRMergeComment: >\n Congrats on your first pull-request! We ❤ the people who are involved in this project, and we’d love to pay it forward by [sending you some swag](https://aka.platform.uno/new-contrib-swag). If you have any feedback (or ideas how to improve Uno as a open-source project) please [open a feedback issue](https://github.com/unoplatform/uno/issues/new?labels=kind%2Ffeedback%2C+triage%2Funtriaged&template=feedback.md).\n <br>\n ![giphy](https://user-images.githubusercontent.com/127353/66220548-37ae4d00-e69b-11e9-8a16-f08f87b3b27c.gif)\n <br>\n Merci beaucoup 👋\n
dataset_sample\yaml\unoplatform_uno\.github\config.yml
config.yml
YAML
1,344
0.8
0.26087
0.647059
vue-tools
208
2025-02-02T20:49:03.952376
GPL-3.0
false
a6db0fce4338148c53c5a373b034d313
version: 2\nupdates:\n- package-ecosystem: nuget\n directory: "/"\n schedule:\n interval: weekly\n time: "01:00"\n open-pull-requests-limit: 10\n labels:\n - kind/dependency\n - do-not-merge/work-in-progress\n ignore:\n - dependency-name: Microsoft.VisualStudio.Telemetry\n versions:\n - "> 16.3.2"\n - dependency-name: Com.Airbnb.Android.Lottie\n versions:\n - "> 3.0.4, < 3.1"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 2.2.a, < 2.3"\n - dependency-name: CommonServiceLocator\n versions:\n - ">= 2.0.a, < 2.1"\n - dependency-name: NUnit.Runners\n versions:\n - ">= 3.10.a, < 3.11"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: Microsoft.NETCore.UniversalWindowsPlatform\n versions:\n - "> 6.1.9"\n - dependency-name: microsoft.visualstudio.texttemplating.15.0\n versions:\n - "> 16.3.29316.127"\n - dependency-name: Xamarin.AndroidX.Fragment\n versions:\n - ">= 1.2.a, < 1.3"\n - dependency-name: Microsoft.Extensions.Logging.Debug\n versions:\n - ">= 2.2.a, < 2.3"\n - dependency-name: Microsoft.AppCenter\n versions:\n - ">= 2.0.a, < 2.1"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: Refit\n versions:\n - ">= 4.7.a, < 4.8"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - ">= 3.5.a, < 3.6"\n - dependency-name: Moq\n versions:\n - ">= 4.11.a, < 4.12"\n - dependency-name: Mono.Cecil\n versions:\n - ">= 0.11.a, < 0.12"\n - dependency-name: docfx.console\n versions:\n - ">= 2.45.a, < 2.46"\n - dependency-name: cef.redist.x64\n versions:\n - "> 3.3396.1786"\n - dependency-name: CommonServiceLocator\n versions:\n - "> 1.3"\n - dependency-name: System.Reactive\n versions:\n - "> 4.1.0, < 4.2"\n - dependency-name: Microsoft.Extensions.Logging.Debug\n versions:\n - "> 1.1.1"\n - dependency-name: CefSharp.Wpf\n versions:\n - "> 67.0.0"\n - dependency-name: cef.redist.x86\n versions:\n - "> 3.3396.1786"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic\n versions:\n - ">= 3.0.a, < 3.1"\n - dependency-name: Microsoft.Build.Engine\n versions:\n - "> 15.4.8"\n - dependency-name: Microsoft.Build.Framework\n versions:\n - "> 15.8.166"\n - dependency-name: CefSharp.Common\n versions:\n - "> 67.0.0"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.MSBuild\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.Common\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: Microsoft.CodeAnalysis.CSharp\n versions:\n - ">= 3.2.a, < 3.3"\n - dependency-name: CefSharp.Common\n versions:\n - ">= 73.a, < 74"\n - dependency-name: Mono.Cecil\n versions:\n - "> 0.9.5.4, < 0.10"\n - dependency-name: BenchmarkDotNet\n versions:\n - ">= 0.12.a, < 0.13"\n - dependency-name: GtkSharp\n versions:\n - "> 3.24.24.4, < 3.25"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - ">= 2.14.a, < 2.15"\n - dependency-name: Uno.Wasm.Bootstrap.DevServer\n versions:\n - "> 1.3.4, < 1.4"\n - dependency-name: Uno.Wasm.Bootstrap\n versions:\n - "> 1.3.4, < 1.4"\n - dependency-name: Xamarin.GooglePlayServices.Location\n versions:\n - ">= 117.1.a, < 117.2"\n - dependency-name: Microsoft.VisualStudio.ComponentModelHost\n versions:\n - "> 15.8.525"\n - dependency-name: Microsoft.UI.Xaml\n versions:\n - ">= 2.3.a, < 2.4"\n - dependency-name: System.Memory\n versions:\n - "> 4.5.2"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 3.0.a, < 3.1"\n - dependency-name: Microsoft.Build.Utilities.Core\n versions:\n - ">= 16.a, < 17"\n - dependency-name: Microsoft.Build.Framework\n versions:\n - "> 15.4.8"\n - dependency-name: Microsoft.CodeAnalysis.Common\n versions:\n - ">= 3.6.a, < 3.7"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.Common\n versions:\n - ">= 3.6.a, < 3.7"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.11.0\n versions:\n - "> 11.0.61031"\n - dependency-name: Microsoft.CodeAnalysis.CSharp\n versions:\n - ">= 3.6.a, < 3.7"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic\n versions:\n - "> 3.6.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime\n versions:\n - "> 15.0.26929"\n - dependency-name: Microsoft.VisualStudio.Shell.15.0\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.CodeAnalysis\n versions:\n - "> 3.3.1"\n - dependency-name: Microsoft.VisualStudio.Imaging\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - "> 3.9.2, < 3.10"\n - dependency-name: Microsoft.VisualStudio.Utilities\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.Identity.Client\n versions:\n - "> 4.15.0"\n - dependency-name: Microsoft.VisualStudio.SDK.EmbedInteropTypes\n versions:\n - "> 15.0.16"\n - dependency-name: Microsoft.Graph\n versions:\n - ">= 3.9.a, < 3.10"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - "> 3.3.1"\n - dependency-name: EnvDTE100\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.12.0\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.TextManager.Interop.8.0\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.8.0\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.VisualStudio.OLE.Interop\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.MSBuild\n versions:\n - ">= 3.3.a, < 3.4"\n - dependency-name: Microsoft.Build.Utilities.Core\n versions:\n - "> 15.4.8"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - "> 2.12.0, < 2.13"\n - dependency-name: ManagedEsent\n versions:\n - ">= 2.0.a, < 2.1"\n - dependency-name: NuGet.VisualStudio\n versions:\n - ">= 4.6.a, < 4.7"\n - dependency-name: Microsoft.VisualStudio.ImageCatalog\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.VisualStudio.Threading.Analyzers\n versions:\n - "> 15.8.209"\n - dependency-name: NUnit3TestAdapter\n versions:\n - "> 3.16.0, < 3.17"\n - dependency-name: Microsoft.VisualStudio.Text.Data\n versions:\n - "> 15.6.27740"\n - dependency-name: Microsoft.VisualStudio.Shell.Framework\n versions:\n - "> 15.9.28307"\n - dependency-name: Microsoft.VisualStudio.Threading\n versions:\n - "> 15.8.209"\n - dependency-name: System.Management\n versions:\n - ">= 4.7.a, < 4.8"\n - dependency-name: microsoft.visualstudio.texttemplating.15.0\n versions:\n - ">= 16.4.a, < 16.5"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - ">= 3.7.a, < 3.8"\n - dependency-name: Microsoft.VisualStudio.CoreUtility\n versions:\n - "> 15.6.27740"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: microsoft.visualstudio.texttemplating.15.0\n versions:\n - ">= 16.5.a, < 16.6"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.5.a, < 3.6"\n - dependency-name: Microsoft.AppCenter\n versions:\n - ">= 3.1.a, < 3.2"\n - dependency-name: Microsoft.Build\n versions:\n - "> 15.4.8"\n - dependency-name: StreamJsonRpc\n versions:\n - "> 2.2.34, < 2.3"\n - dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces\n versions:\n - ">= 3.4.a, < 3.5"\n - dependency-name: Microsoft.Build.Utilities.Core\n versions:\n - ">= 16.4.a, < 16.5"\n - dependency-name: Microsoft.Graph\n versions:\n - ">= 3.14.a, < 3.15"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime\n versions:\n - ">= 16.7.a, < 16.8"\n - dependency-name: Moq\n versions:\n - "> 4.14.6, < 4.15"\n - dependency-name: Microsoft.Build.Tasks.Core\n versions:\n - "> 15.4.8"\n - dependency-name: Xamarin.Android.Support.v7.RecyclerView\n versions:\n - "> 28.0.0.1"\n - dependency-name: Xamarin.AndroidX.Lifecycle.LiveData\n versions:\n - "> 2.2.0.2"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - ">= 2.13.a, < 2.14"\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - ">= 3.8.a, < 3.9"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.Common\n versions:\n - "> 3.3.1"\n - dependency-name: Microsoft.CodeAnalysis.CSharp\n versions:\n - "> 3.3.1"\n - dependency-name: Microsoft.CodeAnalysis.Common\n versions:\n - "> 3.3.1"\n - dependency-name: Xamarin.AndroidX.Browser\n versions:\n - "> 1.0.0, < 1.1"\n - dependency-name: Xamarin.AndroidX.Browser\n versions:\n - ">= 1.2.a, < 1.3"\n - dependency-name: Microsoft.Graph\n versions:\n - "> 3.12.0, < 4"\n - dependency-name: Xamarin.AndroidX.Lifecycle.LiveData\n versions:\n - "> 2.2.0.2, < 2.3"\n - dependency-name: Microsoft.Graph\n versions:\n - ">= 3.15.a, < 3.16"\n - dependency-name: Xamarin.AndroidX.AppCompat.AppCompatResources\n versions:\n - "> 1.1.0.1, < 1.2"\n - dependency-name: Microsoft.Identity.Client\n versions:\n - ">= 4.16.a, < 4.17"\n - dependency-name: Uno.SourceGenerationTasks\n versions:\n - "> 2.0.6, < 2.1"\n - dependency-name: Com.Airbnb.iOS.Lottie\n versions:\n - "> 2.5.11, < 2.6"\n - dependency-name: Microsoft.ApplicationInsights\n versions:\n - ">= 2.15.a, < 2.16"\n - dependency-name: Microsoft.TeamFoundationServer.Client\n versions:\n - ">= 16.170.a, < 16.171"\n - dependency-name: Microsoft.VisualStudio.Services.InteractiveClient\n versions:\n - ">= 16.170.a, < 16.171"\n - dependency-name: SkiaSharp.NativeAssets.Linux\n versions:\n - "> 2.80.0, < 2.81"\n - dependency-name: SkiaSharp\n versions:\n - "> 2.80.0, < 2.81"\n - dependency-name: Jellyfin.SkiaSharp.NativeAssets.LinuxArm\n versions:\n - "> 1.68.0, < 1.69"\n - dependency-name: Microsoft.AppCenter\n versions:\n - ">= 3.4.a, < 3.5"\n - dependency-name: stdole\n versions:\n - "> 7.0.3303"\n - dependency-name: Microsoft.CodeAnalysis.VisualBasic.Workspaces\n versions:\n - "> 3.6.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.10.0\n versions:\n - "> 10.0.30320"\n - dependency-name: Microsoft.VisualStudio.TextManager.Interop\n versions:\n - "> 7.10.6071"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.9.0\n versions:\n - "> 9.0.30730"\n - dependency-name: Microsoft.CodeAnalysis.Workspaces.MSBuild\n versions:\n - "> 3.6.0"\n - dependency-name: Microsoft.Identity.Client\n versions:\n - ">= 4.17.a, < 4.18"\n - dependency-name: SkiaSharp.Views\n versions:\n - "> 1.68.0, < 1.69"\n - dependency-name: Microsoft.VisualStudio.OLE.Interop\n versions:\n - "> 7.10.6071, < 7.11"\n - dependency-name: Microsoft.Extensions.Logging.Console\n versions:\n - ">= 5.0.a, < 5.1"\n - dependency-name: Uno.Wasm.Bootstrap\n versions:\n - "> 2.0.0.pre.dev.180, < 2.1"\n - dependency-name: Microsoft.VisualStudio.Validation\n versions:\n - "> 16.8.33"\n - dependency-name: Microsoft.Win32.Registry\n versions:\n - ">= 5.0.a, < 5.1"\n - dependency-name: Xamarin.AndroidX.Fragment\n versions:\n - "> 1.3.0.1"\n - dependency-name: System.ComponentModel.Composition\n versions:\n - ">= 5.0.a, < 5.1"\n - dependency-name: Uno.Wasm.Bootstrap.DevServer\n versions:\n - "> 2.0.0.pre.dev.180, < 2.1"\n - dependency-name: System.Reflection.Emit\n versions:\n - ">= 4.7.a, < 4.8"\n - dependency-name: Newtonsoft.Json\n versions:\n - ">= 13.0.a, < 13.1"\n - dependency-name: Uno.Core\n versions:\n - ">= 2.1.a, < 2.2"\n - dependency-name: Xamarin.AndroidX.Browser\n versions:\n - ">= 1.3.a, < 1.4"\n - dependency-name: NUnit.Engine\n versions:\n - ">= 3.12.a, < 3.13"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Moq\n versions:\n - "> 4.16.0, < 4.17"\n - dependency-name: StreamJsonRpc\n versions:\n - ">= 2.7.a, < 2.8"\n - dependency-name: MSTest.TestFramework\n versions:\n - ">= 2.2.a, < 2.3"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.12.0\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Microsoft.VisualStudio.OLE.Interop\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Xamarin.GooglePlayServices.Location\n versions:\n - "> 117.0.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime\n versions:\n - ">= 16.9.a, < 16.10"\n - dependency-name: Xamarin.AndroidX.Legacy.Support.v4\n versions:\n - "> 1.0.0, < 1.1"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop.8.0\n versions:\n - "> 8.0.50728"\n - dependency-name: Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime\n versions:\n - "> 14.3.26931"\n - dependency-name: EnvDTE100\n versions:\n - "> 10.0.3"\n - dependency-name: NuGet.VisualStudio\n versions:\n - "> 4.5.0"\n - dependency-name: Microsoft.VisualStudio.Shell.Interop\n versions:\n - "> 7.10.6073"\n - dependency-name: Microsoft.VisualStudio.TextManager.Interop.8.0\n versions:\n - "> 8.0.50728"\n - dependency-name: Microsoft.ProjectReunion.WinUI\n versions:\n - 0.5.5\n - dependency-name: Xamarin.UITest\n versions:\n - 3.0.16\n - dependency-name: Microsoft.Toolkit.Uwp.UI.Lottie\n versions:\n - 7.0.1\n - dependency-name: MSTest.TestAdapter\n versions:\n - 2.2.1\n - dependency-name: Microsoft.TypeScript.MSBuild\n versions:\n - 4.2.2\n - dependency-name: Xamarin.AndroidX.Fragment\n versions:\n - 1.3.0\n commit-message:\n prefix: chore\n include: scope\n
dataset_sample\yaml\unoplatform_uno\.github\dependabot.yml
dependabot.yml
YAML
14,253
0.7
0
0
vue-tools
829
2024-04-29T17:22:14.426928
Apache-2.0
false
a63c02b23441a98e6e6a469d6e6ce49b
# automatically invite contributors to this particular team in the organization when their pull-requests\n# are merged which enables maintainers to assign issues to these individuals.\nteam: community\n
dataset_sample\yaml\unoplatform_uno\.github\invite-contributors.yml
invite-contributors.yml
YAML
199
0.8
0
0.666667
awesome-app
310
2024-02-07T15:19:23.922651
GPL-3.0
false
be900f6101fde213818c4bf72c93ccad
# https://github.com/actions/labeler\n\narea/automation:\n - src/SamplesApp/*\n - src/SamplesApp/**/*\n - src/Uno.UI.Tests/*\n - src/Uno.UI.Tests/**/*\n - src/Uno.UI.Wasm.Tests/*\n - src/Uno.UI.Wasm.Tests/**/*\n\narea/build:\n - build/*\n - build/**/*\n - '**/*.yml'\n - src/Uno.UI.TestComparer/*\n - src/Uno.UI.TestComparer/**/*\n\narea/code-generation:\n - src/SourceGenerators/*\n - src/SourceGenerators/**/*\n\nkind/documentation:\n - README.*\n - doc/**\n - '**/*.md'\n - '**/*.MD'\n - '**/*.txt'\n\narea/skia ✏️:\n - '**/*.skia.cs'\n - src/Uno.UI.Runtime.Skia.Linux.FrameBuffer/*\n - src/Uno.UI.Runtime.Skia.Linux.FrameBuffer/**/*\n - src/Uno.UI.Runtime.Skia.Tizen/*\n - src/Uno.UI.Runtime.Skia.Tizen/**/*\n - src/Uno.UI.Runtime.Skia.Wpf/*\n - src/Uno.UI.Runtime.Skia.Wpf/**/*\n - src/Uno.UI.Runtime.Skia.Android/*\n - src/Uno.UI.Runtime.Skia.Android/**/*\n - src/Uno.UI.Runtime.Skia.AppleUIKit/*\n - src/Uno.UI.Runtime.Skia.AppleUIKit/**/*\n - src/Uno.UI.XamlHost.Skia.Wpf/**/*\n - src/Uno.UI.XamlHost.Skia.Wpf/**/*\n\narea/solution-templates:\n - src/SolutionTemplate/*\n - src/SolutionTemplate/**/*\n - src/UnoItemTemplate/*\n - src/UnoItemTemplate/**/*\n\narea/sdk:\n - src/Uno.Sdk/*\n\nplatform/android 🤖:\n - src/Uno.UI.BindingHelper.Android/*\n - src/Uno.UI.BindingHelper.Android/**/*\n - '**/*.Android.cs'\n - '**/*.Xamarin.cs'\n - src/Uno.UI.Runtime.Skia.Android/*\n - src/Uno.UI.Runtime.Skia.Android/**/*\n \nplatform/wasm 🌐:\n - '**/*.wasm.cs'\n - src/Uno.UI.Wasm/*\n - src/Uno.UI.Wasm/**/*\n - src/Uno.Foundation.Runtime.WebAssembly/*\n - src/Uno.Foundation.Runtime.WebAssembly/**/*\n - src/Uno.UI.Runtime.WebAssembly/*\n - src/Uno.UI.Runtime.WebAssembly/**/*\n - src/Uno.UI.Runtime.Skia.WebAssembly.Browser/*\n - src/Uno.UI.Runtime.Skia.WebAssembly.Browser/**/*\n\nplatform/ios 🍎:\n - '**/*.iOS.cs'\n - '**/*.UIKit.cs'\n - '**/*.iOSmacOS.cs'\n - '**/*.Apple.cs'\n - '**/*.Xamarin.cs'\n - src/Uno.UI.Runtime.Skia.AppleUIKit/*\n - src/Uno.UI.Runtime.Skia.AppleUIKit/**/*\n\nplatform/macos 🍏:\n - src/Uno.UI.Runtime.Skia.MacOS/*\n - src/Uno.UI.Runtime.Skia.MacOS/**/*\n\nplatform/x11 🐧:\n - src/Uno.UI.Runtime.Skia.X11/*\n - src/Uno.UI.Runtime.Skia.X11/**/*\n\nplatform/wpf 🪟:\n - src/Uno.UI.Runtime.Skia.Wpf/*\n - src/Uno.UI.Runtime.Skia.Wpf/**/*
dataset_sample\yaml\unoplatform_uno\.github\labeler.yml
labeler.yml
YAML
2,260
0.8
0
0.012821
react-lib
311
2025-05-19T17:20:10.571045
BSD-3-Clause
false
051ee63baaf9e2fb20bb8d5a60a1092e
# Configuration for top-issue-bot - https://github.com/adamzolyak/gh-vote-bot\nlabelName: "triage/most-wanted"\nlabelColor: "#BB8FCE"\nnumberOfIssuesToLabel: 30\n
dataset_sample\yaml\unoplatform_uno\.github\topissuebot.yml
topissuebot.yml
YAML
158
0.8
0.25
0.25
python-kit
678
2025-04-11T08:10:24.980940
MIT
false
9279a34613b2de8187d6136d56a7146c
name: Q&A\ndescription: Ask the community for help\nbody:\n\n - type: textarea\n id: question\n attributes:\n label: Describe your issue\n description: |\n - Explain your problem in the most specific way. Provide any relevant error logs, full stack traces of exceptions, browser logs, etc...\n - If you have a build error, [make sure to attach a binlog](https://aka.platform.uno/msbuild-troubleshoot)\n\n - type: textarea\n id: repro-steps\n attributes:\n label: Provide repro steps and sample\n description: |\n - Attach a [**minimal repro project**](https://aka.platform.uno/uno-repro-sample) and provide detailed **steps to reproduce**.\n - Make sure to attach the zip file to this discussion (you can use drag and drop of the zip file).\n\n - type: textarea\n id: nuget-versions\n attributes:\n label: NuGet package version(s)\n\n - type: dropdown\n id: platforms\n attributes:\n label: Affected platforms\n multiple: true\n options: \n - WebAssembly\n - Android\n - iOS\n - Mac Catalyst\n - Skia (WPF)\n - Skia (GTK on Linux/macOS/Windows)\n - Skia (Linux Framebuffer)\n - Windows\n - macOS (AppKit)\n - Build tasks\n\n - type: dropdown\n id: ide\n attributes:\n label: IDE\n multiple: true\n options:\n - Visual Studio 2022\n - Visual Studio Code\n - Rider Windows\n - Rider macOS\n - Rider Linux\n
dataset_sample\yaml\unoplatform_uno\.github\DISCUSSION_TEMPLATE\q-a.yml
q-a.yml
YAML
1,481
0.8
0.018868
0
vue-tools
967
2024-09-16T23:59:08.790315
MIT
false
f973272e88b39bbe0641c03b27e54c2f
name: Bug Report\ndescription: Report a bug encountered while developing with Uno\nlabels: [kind/bug, triage/untriaged, difficulty/tbd]\nbody:\n - type: textarea\n id: current-behavior\n attributes:\n label: Current behavior\n description: Describe how the issue manifests\n - type: textarea\n id: expected-behavior\n attributes:\n label: Expected behavior\n description: Describe what the desired behavior should be.\n - type: textarea\n id: how-to-reproduce\n attributes:\n label: How to reproduce it (as minimally and precisely as possible)\n description: |\n Please provide a **MINIMAL REPRO PROJECT** and the **STEPS TO REPRODUCE**\n\n To create a minimal reproduction project:\n\n - Create an Uno app through:\n - `dotnet new install Uno.Templates` and `dotnet new unoapp`\n - or through the [Visual Studio extension](https://platform.uno/docs/articles/get-started-vs-2022.html)\n - Make sure to add the least code possible to demonstrate the issue\n - Keep all project heads, even if the platforms are seemingly not relevant to your issue\n - Remove all the `obj/bin` folders and zip the folder.\n - Attach the zip file to the issue\n\n If the issue is visible on WebAssembly and uses only XAML:\n\n - Visit https://playground.platform.uno\n - Add your code and data context as needed\n - Create a link and paste it here\n\n - type: textarea\n id: workaround\n attributes:\n label: Workaround\n description: Please provide steps to workaround this problem if possible\n - type: dropdown\n id: works-uwp-winui\n attributes:\n label: Works on UWP/WinUI\n description: |\n To make sure this is an Uno Platform specific issue, try running your sample application on Windows using the UWP or WinUI project. If it does not work on Windows either, it may be a Windows issue or it may be a documentation issue.\n In this case, [open a discussion](https://github.com/unoplatform/uno/discussions) instead.\n options:\n - 'Yes'\n - 'No'\n\n - type: dropdown\n id: environment\n attributes:\n label: Environment\n description: NuGet package(s)\n multiple: true\n options:\n - Uno.UI / Uno.UI.WebAssembly / Uno.UI.Skia\n - Uno.WinUI / Uno.WinUI.WebAssembly / Uno.WinUI.Skia\n - Uno.SourceGenerationTasks\n - Uno.UI.DevServer / Uno.WinUI.DevServer\n - Other\n\n - type: textarea\n id: nuget-versions\n attributes:\n label: NuGet package version(s)\n\n - type: dropdown\n id: platforms\n attributes:\n label: Affected platforms\n multiple: true\n options: \n - WebAssembly\n - Android\n - iOS\n - Mac Catalyst\n - Skia (WPF)\n - Skia (Linux X11)\n - Skia (macOS)\n - Skia (Linux Framebuffer)\n - Skia (GTK)\n - Windows (WinAppSDK)\n - Build tasks\n\n - type: dropdown\n id: ide\n attributes:\n label: IDE\n multiple: true\n options:\n - Visual Studio 2022\n - Visual Studio Code\n - Rider Windows\n - Rider macOS\n - Rider Linux\n\n - type: input\n id: ide-version\n attributes:\n label: IDE version\n\n - type: textarea\n id: plugins\n attributes:\n label: Relevant plugins\n description: For example, ReSharper version X\n\n - type: textarea\n id: additional-info\n attributes:\n label: Anything else we need to know?\n description: We would love to know of any friction, apart from knowledge, that prevented you from sending in a pull-request\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\bug-report.yml
bug-report.yml
YAML
3,794
0.8
0.034188
0
react-lib
230
2024-12-14T15:36:55.037364
BSD-3-Clause
false
e3fffbe1e035833954391ec8eb333a26
blank_issues_enabled: false\ncontact_links:\n - name: Questions\n url: https://github.com/unoplatform/uno/discussions\n about: 'For general questions about Uno, visit GitHub discussions'\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\config.yml
config.yml
YAML
190
0.8
0
0
vue-tools
669
2023-08-23T06:25:51.874301
Apache-2.0
false
c3b5e178d088157a8c6d2471111a54df
name: Documentation Issue\ndescription: Report an issue with the Uno documentation\nlabels: [kind/consumer-experience, kind/documentation, triage/untriaged, difficulty/tbd]\nbody:\n - type: markdown\n attributes:\n value: |\n Please only use this template for reporting issues with the documentation where the fix isn't straightforward. We greatly appreciate it when people send in pull requests with fixes. If any friction, apart from knowledge, is preventing you from doing so, please let us know below. \n\n - type: input\n id: docs-issue-location\n attributes:\n label: On which page?\n description: Specify the page or section of the documentation where you've identified an issue\n placeholder: ex. https://platform.uno/docs/articles/intro.html\n validations:\n required: true\n\n - type: textarea\n id: docs-issue-description\n attributes:\n label: What's wrong?\n description: Provide a detailed description of what you believe is incorrect, unclear, or needs improvement\n validations:\n required: true\n\n - type: textarea\n id: docs-issue-additional-info\n attributes:\n label: Any feedback?\n description: Feel free to offer any additional feedback that could help us better understand the problem or potential solution\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\documentation-issue.yml
documentation-issue.yml
YAML
1,290
0.95
0.032258
0
python-kit
326
2025-03-03T07:20:08.810577
Apache-2.0
false
6333d4d9897852ab7a5602150f6e76c7
name: Documentation Request\ndescription: Request an enhancement to the Uno documentation\nlabels: [kind/consumer-experience, kind/documentation, triage/untriaged, difficulty/tbd]\nbody:\n - type: markdown\n attributes:\n value: |\n Please only use this template for submitting documentation requests. \n\n - type: textarea\n id: docs-request-description\n attributes:\n label: What would you like clarification on\n description: Provide a clear and detailed explanation of what aspect of the documentation you would like to see improved or clarified\n validations:\n required: true\n\n - type: dropdown\n id: docs-request-concern\n attributes:\n label: Concern\n description: Choose the category that best describes your concern from the provided options or leave blank if none is applicable \n multiple: false\n options: \n - Usage in industry\n - Clarification of capabilities\n - Getting started with Uno\n - Developing with Uno\n - Contributing to the Uno project\n - Publishing your application\n - Support\n\n - type: dropdown\n id: docs-request-platforms\n attributes:\n label: Affected platforms\n multiple: true\n description: Select the platforms for which your request is relevant\n options: \n - WebAssembly\n - Android\n - iOS\n - Mac Catalyst\n - Skia (WPF)\n - Skia (Linux X11)\n - Skia (macOS)\n - Skia (Linux Framebuffer)\n - Skia (GTK)\n - Windows (WinAppSDK)\n\n - type: textarea\n id: docs-request-additional-info\n attributes:\n label: Any feedback?\n description: Feel free to offer any additional feedback that could help us better understand the problem or potential solution\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\documentation-request.yml
documentation-request.yml
YAML
1,792
0.85
0.054545
0
vue-tools
328
2023-10-22T08:15:42.999751
BSD-3-Clause
false
18671d2a5be316b5e2c17aa8f7750233
name: Enhancement Request\ndescription: Suggest an enhancement to Uno Platform\nlabels: [kind/enhancement, triage/untriaged, difficulty/tbd]\nbody:\n - type: textarea\n id: enhancement-description\n attributes:\n label: What would you like to be added\n description: Describe in detail what is the feature or functionality you are missing\n\n - type: textarea\n id: enhancement-use-case\n attributes:\n label: Why is this needed\n description: Describe the use case of this enhancement\n\n - type: dropdown\n id: enhancement-platforms\n attributes:\n label: For which platform\n multiple: true\n options:\n - WebAssembly\n - Android\n - iOS\n - Mac Catalyst\n - Skia (WPF)\n - Skia (Linux X11)\n - Skia (macOS)\n - Skia (Linux Framebuffer)\n - Skia (GTK)\n - Windows (WinAppSDK)\n - Build tasks\n\n - type: textarea\n id: enhancement-additional-info\n attributes:\n label: Anything else we need to know?\n description: Notes for contributors, further explanations, or any other information\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\enhancement.yml
enhancement.yml
YAML
1,102
0.85
0.025641
0
node-utils
943
2024-03-18T21:34:43.430370
Apache-2.0
false
3b9f2c11824d5d71fb22cfc0a4655c5c
name: Feedback\ndescription: Share your feedback the Uno Platform team\nlabels: [kind/feedback, triage/untriaged]\nbody:\n - type: markdown\n attributes:\n value: |\n Thanks for stopping by to share your feedback! 💖 \n\n - type: textarea\n id: feedback-description\n attributes:\n label: Your feedback\n placeholder: | \n Need some inspiration? Folks typically submit feedback on the following topics:\n\n - what version of Uno and what platforms you are using it with\n - what do you like\n - what is lacking\n - what do you long for going forward\n - where and how you have used Uno in production\n - any friction that hinders adoption of Uno at your company\n - any friction that is preventing you from contributing to Uno\n validations:\n required: true\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\feedback.yml
feedback.yml
YAML
834
0.85
0.08
0
node-utils
103
2024-11-26T06:42:04.561860
GPL-3.0
false
2fea736628976d381acf4f79227d7155
name: Success Story\ndescription: If you are using Uno in production, we would love to hear about it\nlabels: [kind/consumer-experience, kind/documentation, triage/untriaged]\nbody:\n - type: markdown\n attributes:\n value: |\n **STOP ⛔ -- PLEASE READ!**\n\n We 💖 to hear about how, where and what you're doing with Uno. Sharing this information is one of the kindest things you can do in open-source and the maintainers love hearing about success stories. Instead of raising a new GitHub issue could you please comment in the existing thread?\n\n [Uno in Production](https://github.com/unoplatform/uno/discussions/5012) \n\n If you're feeling extra generous, how about writing a blog post and then letting us know about it? That way, we can retweet it.\n\n Thank you!\n\n - type: textarea\n id: success-story-text\n attributes:\n label: What is your success story?\n description: If you still want to use GitHub Issues for sharing your Success story, you can do so bellow\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\success-story.yml
success-story.yml
YAML
1,018
0.8
0.045455
0.058824
node-utils
665
2023-07-18T02:43:09.199857
GPL-3.0
false
f5387fe7ff59d2f37e696ddd75d3989e
name: Support Request\ndescription: Support request or question relating to Uno\nlabels: [triage/support]\nbody:\n - type: markdown\n attributes:\n value: |\n **STOP ⛔ -- PLEASE READ!**\n\n GitHub is not the right place for support requests.\n\n If you're looking for help, check [Stack Overflow](https://stackoverflow.com/questions/tagged/uno-platform) and the [documentation](https://platform.uno/docs/).\n\n You can also post your question in [GitHub discussions](https://github.com/unoplatform/uno/discussions) or [on Twitter using the #unoplatform](https://twitter.com/search?q=%23unoplatform) hashtag.\n\n For organizations that want a deeper level of support beyond our community support, please [contact us](https://platform.uno/contact/). Our professional support is more than a contract – it is a shared responsibility for your project success. Our engineering team will collaborate with you to ensure the success of your projects, and our custom application development team at nventive is also available to lend its expertise.\n\n If the matter is security related, please disclose it privately via https://github.com/unoplatform/uno/security/\n\n - type: textarea\n id: support-request-text\n attributes:\n label: What do you need help with?\n description: If you still want to use GitHub Issues for Support request, you can do so bellow\n
dataset_sample\yaml\unoplatform_uno\.github\ISSUE_TEMPLATE\support-request.yml
support-request.yml
YAML
1,400
0.8
0.166667
0.055556
node-utils
428
2024-05-11T12:53:03.026363
BSD-3-Clause
false
9310d1007b184b3ed6ef4f7eba2db58e
# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages in your repository. Please check\n# the `language` matrix defined below to confirm you have the correct set of\n# supported CodeQL languages.\n#\nname: "CodeQL Advanced"\n\non:\n push:\n branches: [ "master", "feature/*", "legacy/**", "release/beta/*", "release/stable/*" ]\n pull_request:\n branches: [ "master", "feature/*", "legacy/**", "release/beta/*", "release/stable/*" ]\n schedule:\n - cron: '16 14 * * 1'\n\njobs:\n analyze:\n if: github.repository == 'unoplatform/uno'\n name: Analyze (${{ matrix.language }})\n # Runner size impacts CodeQL analysis time. To learn more, please see:\n # - https://gh.io/recommended-hardware-resources-for-running-codeql\n # - https://gh.io/supported-runners-and-hardware-resources\n # - https://gh.io/using-larger-runners (GitHub.com only)\n # Consider using larger runners or machines with greater resources for possible analysis time improvements.\n runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}\n permissions:\n # required for all workflows\n security-events: write\n\n # required to fetch internal or private CodeQL packs\n packages: read\n\n # only required for workflows in private repositories\n actions: read\n contents: read\n\n strategy:\n fail-fast: false\n matrix:\n include:\n - language: csharp\n build-mode: manual\n - language: java-kotlin\n build-mode: none # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too.\n - language: javascript-typescript\n build-mode: none\n # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'\n # Use `c-cpp` to analyze code written in C, C++ or both\n # Use 'java-kotlin' to analyze code written in Java, Kotlin or both\n # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both\n # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,\n # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.\n # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how\n # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages\n steps:\n - name: Checkout repository\n uses: actions/checkout@v4\n\n - name: Free Disk Space (Ubuntu)\n if: runner.os == 'Linux'\n uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be #v1.3.1\n with:\n # this might remove tools that are actually needed,\n # if set to "true" but frees about 6 GB\n tool-cache: false\n \n # all of these default to true, but feel free to set to\n # "false" if necessary for your workflow\n android: true\n dotnet: true\n haskell: true\n large-packages: true\n docker-images: true\n swap-storage: true\n\n - name: Pin .NET Version\n run: |\n cp build/ci/net9/global.json global.json\n\n - name: Setup .NET SDK\n uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3\n with:\n global-json-file: global.json\n env:\n DOTNET_INSTALL_DIR: ${{ runner.temp }}/.dotnet\n DOTNET_ROOT: ${{ runner.temp }}/.dotnet\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 build-mode: ${{ matrix.build-mode }}\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 the analyze step fails for one of the languages you are analyzing with\n # "We were unable to automatically build your code", modify the matrix above\n # to set the build mode to "manual" for that language. Then modify this step\n # to build your code.\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 - if: matrix.build-mode == 'manual'\n shell: bash\n run: |\n cd src/SamplesApp/SamplesApp.Skia.Generic\n dotnet build SamplesApp.Skia.Generic.csproj -f net9.0 -c Release -p:UnoTargetFrameworkOverride=net9.0 /bl:ios-netcoremobile-sampleapp.binlog\n\n - name: Perform CodeQL Analysis\n uses: github/codeql-action/analyze@v3\n with:\n category: "/language:${{matrix.language}}"\n
dataset_sample\yaml\unoplatform_uno\.github\workflows\codeql.yml
codeql.yml
YAML
5,564
0.95
0.180328
0.394495
awesome-app
973
2024-10-21T09:48:05.733658
Apache-2.0
false
e67162de6ce794e8392a870b21c58ce3
name: "Pull Request Labeler"\non:\n- pull_request_target\n\njobs:\n triage:\n if: github.repository == 'unoplatform/uno'\n permissions:\n contents: read\n pull-requests: write\n runs-on: ubuntu-latest\n steps:\n - uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4\n with:\n repo-token: "${{ secrets.GITHUB_TOKEN }}"\n
dataset_sample\yaml\unoplatform_uno\.github\workflows\labeler.yml
labeler.yml
YAML
358
0.8
0.066667
0
react-lib
239
2024-10-27T21:43:19.007614
GPL-3.0
false
a7b7735631993d5ef86ae7808c494413
name: No Response\n\n# Both `issue_comment` and `scheduled` event types are required for this Action\n# to work properly.\non:\n issue_comment:\n types: [created]\n schedule:\n # Schedule for 5 minutes past the hour, every 6 hours\n - cron: '5 */6 * * *'\n\njobs:\n noResponse:\n if: github.repository == 'unoplatform/uno'\n runs-on: ubuntu-latest\n steps:\n - uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb # 0.5.0\n with:\n token: ${{ github.token }}\n daysUntilClose: 20\n responseRequiredLabel: triage/needs-information\n closeComment: >\n This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. We don't monitor discussions on closed issues thus please open a new GitHub issue if you need the team to revisit this matter.\n
dataset_sample\yaml\unoplatform_uno\.github\workflows\no-response.yml
no-response.yml
YAML
995
0.95
0.217391
0.142857
awesome-app
576
2024-06-27T07:35:32.496459
MIT
false
4a586107efff134663ff665875c2b748
# This workflow uses actions that are not certified by GitHub. They are provided\n# by a third-party and are governed by separate terms of service, privacy\n# policy, and support documentation.\n\nname: Scorecard supply-chain security\non:\n # For Branch-Protection check. Only the default branch is supported. See\n # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection\n branch_protection_rule:\n # To guarantee Maintained check is occasionally updated. See\n # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained\n schedule:\n - cron: '24 13 * * 4'\n push:\n branches: [ "master" ]\n\n# Declare default permissions as read only.\npermissions: read-all\n\njobs:\n analysis:\n if: github.repository == 'unoplatform/uno'\n name: Scorecard analysis\n runs-on: ubuntu-latest\n permissions:\n # Needed to upload the results to code-scanning dashboard.\n security-events: write\n # Needed to publish results and get a badge (see publish_results below).\n id-token: write\n # Uncomment the permissions below if installing in a private repository.\n # contents: read\n # actions: read\n\n steps:\n - name: "Checkout code"\n uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1\n with:\n persist-credentials: false\n\n - name: "Run analysis"\n uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1\n with:\n results_file: results.sarif\n results_format: sarif\n # (Optional) "write" PAT token. Uncomment the `repo_token` line below if:\n # - you want to enable the Branch-Protection check on a *public* repository, or\n # - you are installing Scorecard on a *private* repository\n # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action?tab=readme-ov-file#authentication-with-fine-grained-pat-optional.\n # repo_token: ${{ secrets.SCORECARD_TOKEN }}\n\n # Public repositories:\n # - Publish results to OpenSSF REST API for easy access by consumers\n # - Allows the repository to include the Scorecard badge.\n # - See https://github.com/ossf/scorecard-action#publishing-results.\n # For private repositories:\n # - `publish_results` will always be set to `false`, regardless\n # of the value entered here.\n publish_results: false\n\n # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF\n # format to the repository Actions tab.\n - name: "Upload artifact"\n uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2\n with:\n name: SARIF file\n path: results.sarif\n retention-days: 5\n\n # Upload the results to GitHub's code scanning dashboard (optional).\n # Commenting out will disable upload of results to your repo's Code Scanning dashboard\n - name: "Upload to code-scanning"\n uses: github/codeql-action/upload-sarif@v3\n with:\n sarif_file: results.sarif\n
dataset_sample\yaml\unoplatform_uno\.github\workflows\scorecard.yml
scorecard.yml
YAML
3,126
0.8
0.054054
0.439394
python-kit
574
2024-12-28T09:23:55.469374
BSD-3-Clause
false
31cf62520e60bcc737a0e76ef2ad9832
name: 'Close stale PRs'\non:\n schedule:\n - cron: '30 1 * * *'\n\n workflow_dispatch:\n\npermissions:\n contents: write # only for delete-branch option\n issues: write\n pull-requests: write\n\njobs:\n stale:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/stale@v9\n with:\n # docs: https://github.com/actions/stale?tab=readme-ov-file\n\n stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or it will be closed in 10 days.'\n close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'\n\n days-before-pr-stale: 60\n days-before-pr-close: 10\n\n # disable issue closing\n days-before-issue-stale: -1\n days-before-issue-close: -1\n\n operations-per-run: 100\n\n # Flag older PRs first\n ascending: true\n\n debug-only: false
dataset_sample\yaml\unoplatform_uno\.github\workflows\stale-prs.yml
stale-prs.yml
YAML
933
0.8
0.057143
0.111111
vue-tools
76
2024-01-15T06:10:11.690609
MIT
false
a9f9bf2d93f14d38480b0c4367b2379b
# verbose: true\ncommits:\n # strict: false\n # limit: 100\n # all: true\n upstreamBranch: origin/master\n
dataset_sample\yaml\unoplatform_uno\build\.commitsar.yml
.commitsar.yml
YAML
104
0.8
0
0.666667
react-lib
169
2024-11-12T07:20:04.403196
Apache-2.0
false
d68e114420d385faa3ecce8aee3142d8
steps:\n- bash: |\n curl -L -O https://github.com/aevea/commitsar/releases/download/v0.20.2/commitsar_0.20.2_linux_amd64.tar.gz\n tar -xzf commitsar_0.20.2_linux_amd64.tar.gz\n export COMMITSAR_CONFIG_PATH=$(build.sourcesdirectory)/build\n ./commitsar\n\n condition: ne(variables['System.PullRequest.PullRequestNumber'], '')\n\n- template: templates/generate-changelog.yml\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-commitsar.yml
.azure-devops-commitsar.yml
YAML
377
0.8
0
0
node-utils
282
2025-02-02T18:25:33.162707
MIT
false
9c8046545798ed8e3e2f536be1e0eaf8
parameters:\n poolName: ''\n\njobs:\n- job: Documentation\n displayName: 'Build Documentation WebSite'\n\n pool: ${{ parameters.poolName }}\n\n variables:\n CombinedConfiguration: Release|Any CPU\n CI_Build: true\n\n # Use pre-defined local nuget cache for restore\n NUGET_PACKAGES: 'C:\NugetPackages'\n UNO_UWP_BUILD: false\n XAML_FLAVOR_BUILD: WinUI\n\n steps:\n - template: templates/nuget-cache.yml\n parameters:\n nugetPackages: $(NUGET_PACKAGES)\n\n - template: templates/dotnet-mobile-install-windows.yml\n\n - template: templates/gitversion.yml\n - template: templates/jdk-setup.yml\n\n - template: templates/docfx-intermediary-assets.yml\n\n - task: MSBuild@1\n inputs:\n solution: Build/Uno.UI.Build.csproj\n msbuildLocationMethod: version\n msbuildVersion: latest\n msbuildArchitecture: x86\n msbuildArguments: /r /t:GenerateDoc /p:CheckExclusions=True "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)/generate-docs.binlog\n clean: false\n maximumCpuCount: true\n restoreNugetPackages: false\n logProjectEvents: false\n createLogFile: false\n\n - task: PublishBuildArtifacts@1\n condition: always()\n retryCountOnTaskFailure: 3\n inputs:\n PathtoPublish: $(build.artifactstagingdirectory)\n ArtifactName: DocumentationArtifacts\n ArtifactType: Container\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-docs.yml
.azure-devops-docs.yml
YAML
1,389
0.8
0.02
0.025
node-utils
380
2023-09-10T06:55:31.288232
MIT
false
c34fee972da095f275ddf1dca7558646
steps:\n- task: NodeTool@0\n inputs:\n versionSpec: '18.x'\n\n# Keep that version in sync with documentation at doc/README.md\n- bash: npm install -g [email protected]\n displayName: Install markdownlint-cli\n\n- bash: markdownlint -c $(Build.SourcesDirectory)/build/.markdownlint.json "doc/**/*.md"\n displayName: Run Markdown Linter\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-markdown-lint.yml
.azure-devops-markdown-lint.yml
YAML
337
0.8
0
0.111111
awesome-app
770
2023-10-05T07:25:06.842409
GPL-3.0
false
030617290cbb3690876d13a1252ca566
parameters:\n poolName: ''\n UNO_UWP_BUILD: ''\n XAML_FLAVOR_BUILD: ''\n\njobs:\n- job: binaries_win_build\n displayName: 'Build Binaries'\n timeoutInMinutes: 90\n cancelTimeoutInMinutes: 1\n\n pool: ${{ parameters.poolName }}\n\n variables:\n CombinedConfiguration: Release|Any CPU\n CI_Build: true\n\n # Disable trimming for packages creation\n PublishTrimmed: false\n\n # Disable AOT for this job\n RunAOTCompilation: false\n\n # Use pre-defined local nuget cache for restore\n NUGET_PACKAGES: 'C:\NugetPackages'\n\n UNO_UWP_BUILD: ${{ parameters.UNO_UWP_BUILD }}\n XAML_FLAVOR_BUILD: ${{ parameters.XAML_FLAVOR_BUILD }}\n\n steps:\n - checkout: self\n clean: true\n\n - template: templates/nuget-cache.yml\n parameters:\n nugetPackages: $(NUGET_PACKAGES)\n\n - template: templates/gitversion.yml\n\n - template: templates/dotnet-mobile-install-windows.yml\n parameters:\n UnoCheckParameters: '--tfm net9.0-ios --tfm net9.0-maccatalyst --tfm net9.0-android --tfm net9.0-tvos'\n\n # This task is required to run in separately to avoid hitting targets file\n # caching issues with msbuild 17.3 or later\n - task: DotNetCoreCLI@2\n inputs:\n workingDirectory: Build\n arguments: Uno.UI.Build.csproj /nr:false /r /m /t:PrepareBuildAssets "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)\build-$(NBGV_SemVer2)-netcoremobile-prepare-$(XAML_FLAVOR_BUILD).binlog\n displayName: Preparing assets\n\n - task: DotNetCoreCLI@2\n inputs:\n workingDirectory: Build\n arguments: Uno.UI.Build.csproj /r /m /t:BuildCIMobile "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)\build-$(NBGV_SemVer2)-netcoremobile-$(XAML_FLAVOR_BUILD).binlog\n displayName: Building Mobile binaries\n\n - powershell: |\n Set-PSDebug -Trace 1\n dotnet build build/Uno.UI.Build.csproj /m /t:BuildCIReference "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)/build-Reference-$(XAML_FLAVOR_BUILD).binlog\n displayName: Building Reference Binaries\n \n ## Restore skia-macos native assets\n - task: DownloadPipelineArtifact@2\n displayName: Restoring macOS native assets\n inputs:\n artifact: NugetPackages-Artifacts-skia-macos-native-$(XAML_FLAVOR_BUILD)\n path: $(Build.SourcesDirectory)/src/Uno.UI.Runtime.Skia.MacOS/UnoNativeMac/build/Release\n\n - powershell: |\n Set-PSDebug -Trace 1\n dotnet build build/Uno.UI.Build.csproj /m /t:BuildCISkia "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)/build-skia-$(XAML_FLAVOR_BUILD).binlog\n displayName: Building Skia Binaries\n\n - powershell: |\n Set-PSDebug -Trace 1\n dotnet build build/Uno.UI.Build.csproj /m /t:BuildCIWasm "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)/build-wasm-$(XAML_FLAVOR_BUILD).binlog\n displayName: Building Wasm Binaries\n\n - task: MSBuild@1\n displayName: Building WinAppSDK/UWP package binaries\n inputs:\n solution: build/filters/Uno.UI-packages-windows.slnf\n msbuildLocationMethod: version\n msbuildVersion: latest\n msbuildArchitecture: x86\n msbuildArguments: /r /m /v:m /p:Configuration=Release /detailedsummary /bl:$(build.artifactstagingdirectory)/build-$(NBGV_SemVer2)-windows-$(XAML_FLAVOR_BUILD)-binaries.binlog\n clean: false\n restoreNugetPackages: false\n logProjectEvents: false\n createLogFile: false\n\n - task: MSBuild@1\n displayName: Building WinAppSDK Graphics3DGL package binaries\n condition: and(succeeded(), eq(variables.UNO_UWP_BUILD, false))\n inputs:\n solution: src/AddIns/Uno.WinUI.Graphics3DGL/Uno.WinUI.Graphics3DGL.csproj\n msbuildLocationMethod: version\n msbuildVersion: latest\n msbuildArchitecture: x86\n msbuildArguments: /r /m /v:m /p:Configuration=Release /p:BuildGraphics3DGLForWindows=true /p:PackageVersion=$(NBGV_SemVer2) /p:InformationalVersion=$(NBGV_AssemblyInformationalVersion) /p:PackageOutputPath=$(build.artifactstagingdirectory)\vslatest /detailedsummary /bl:$(build.artifactstagingdirectory)/build-$(NBGV_SemVer2)-graphics3dgl-windows-$(XAML_FLAVOR_BUILD)-binaries.binlog\n clean: false\n restoreNugetPackages: false\n logProjectEvents: false\n createLogFile: false\n\n - task: MSBuild@1\n displayName: Generate NuGet Packages\n inputs:\n solution: Build/Uno.UI.Build.csproj\n msbuildLocationMethod: version\n msbuildVersion: latest\n msbuildArchitecture: x86\n msbuildArguments: /r /m /v:m /t:BuildNuGetPackage "/p:CombinedConfiguration=$(CombinedConfiguration)" /detailedsummary /bl:$(build.artifactstagingdirectory)/build-$(XAML_FLAVOR_BUILD)-$(NBGV_SemVer2)-generate-packages.binlog\n clean: false\n restoreNugetPackages: false\n logProjectEvents: false\n createLogFile: false\n\n - task: CopyFiles@2\n displayName: Copy built packages\n condition: always()\n inputs:\n SourceFolder: $(build.sourcesdirectory)/Build\n Contents: '*.nupkg'\n TargetFolder: $(build.artifactstagingdirectory)/vslatest\n CleanTargetFolder: false\n OverWrite: false\n flattenFolders: false\n\n - task: CopyFiles@2\n displayName: Copy generic build packages\n condition: always()\n inputs:\n SourceFolder: $(Agent.WorkFolder)/\n Contents: |\n NugetPackages-Artifacts*/vslatest*/*.nupkg\n NugetPackages-Artifacts*/vslatest*/*.vsix\n !NugetPackages-Artifacts*/vslatest*/Uno.ProjectTemplates.Dotnet*.nupkg\n TargetFolder: $(build.artifactstagingdirectory)/vslatest\n CleanTargetFolder: false\n OverWrite: false\n flattenFolders: true\n\n - task: PowerShell@2\n displayName: Authenticode Sign Packages\n inputs:\n filePath: build/Sign-Package.ps1\n env:\n SignClientUser: $(SignClientUser)\n SignClientSecret: $(SignClientSecret)\n SignPackageName: "Uno Platform"\n SignPackageDescription: "The Uno Platform"\n ArtifactDirectory: $(build.artifactstagingdirectory)/vslatest\n condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')), not(eq(variables['SignClientSecret'], '')), not(eq(variables['SignClientUser'], '')))\n\n - task: PublishBuildArtifacts@1\n condition: always()\n retryCountOnTaskFailure: 3\n inputs:\n PathtoPublish: $(build.artifactstagingdirectory)\n ArtifactName: 'Nuget_Packages'\n ArtifactType: Container\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-package-netcoremobile.yml
.azure-devops-package-netcoremobile.yml
YAML
6,535
0.95
0.018405
0.043165
react-lib
624
2024-02-26T12:03:32.750925
GPL-3.0
false
2399c89ada6fbcd24acec3551ed67ed1
parameters:\n poolName: ''\n UNO_UWP_BUILD: ''\n XAML_FLAVOR_BUILD: ''\n AssetNativeSuffix: ''\n\njobs:\n- job: skia_package_macos_native_build\n displayName: 'Skia macOS Native Binaries'\n pool:\n vmImage: ${{ parameters.macOSImageName }}\n\n variables:\n CombinedConfiguration: Release|Any CPU\n CI_Build: true\n\n NUGET_PACKAGES: $(build.sourcesdirectory)/.nuget\n\n # We're building packages on linux, so we need to enable WPF support\n EnableWindowsTargeting: true\n\n UNO_UWP_BUILD: ${{ parameters.UNO_UWP_BUILD }}\n XAML_FLAVOR_BUILD: ${{ parameters.XAML_FLAVOR_BUILD }}\n\n steps:\n - checkout: self\n clean: true\n\n - template: templates/gitversion.yml\n \n - bash: |\n cd $(build.sourcesdirectory)/src/Uno.UI.Runtime.Skia.MacOS/UnoNativeMac\n chmod +x build.sh\n ./build.sh\n displayName: Build Skia macOS native\n\n - task: PublishPipelineArtifact@1\n retryCountOnTaskFailure: 3\n inputs:\n targetPath: $(build.sourcesdirectory)/src/Uno.UI.Runtime.Skia.MacOS/UnoNativeMac/build/Release\n artifactName: NugetPackages-Artifacts-skia-macos-native${{ parameters.AssetNativeSuffix }}-$(XAML_FLAVOR_BUILD)\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-package-skia-native-assets.yml
.azure-devops-package-skia-native-assets.yml
YAML
1,146
0.8
0
0.03125
node-utils
448
2024-06-17T16:19:25.191227
MIT
false
0c993563c4d474f63e7fe7d14b66fc1e
jobs:\n- deployment: 'Nuget'\n displayName: 'Nuget Publish Dev'\n environment: 'Uno UI Development'\n\n pool:\n vmImage: ${{ parameters.vmImage }}\n\n strategy:\n runOnce:\n deploy:\n steps:\n - download: none\n\n # https://github.com/microsoft/azure-pipelines-tasks/issues/17207\n - task: DownloadPipelineArtifact@2\n inputs:\n artifactName: 'NuGet_Packages'\n targetPath: '$(Pipeline.Workspace)/NuGet_Packages'\n displayName: Download Artifacts\n\n - template: templates/nuget-publish-dev.yml\n - template: templates/nuget-publish-public.yml\n\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-publish-nuget-dev.yml
.azure-devops-publish-nuget-dev.yml
YAML
620
0.8
0
0.052632
python-kit
799
2025-03-25T16:02:49.719074
GPL-3.0
false
424b3463c6dccab03cd7f28c2199ab47
jobs:\n- deployment: 'Nuget_Prod_Dev'\n displayName: 'Nuget Publish Prod Dev'\n environment: 'Uno UI Production'\n\n pool:\n vmImage: ${{ parameters.vmImage }}\n\n strategy:\n runOnce:\n deploy:\n steps:\n - download: none\n\n # https://github.com/microsoft/azure-pipelines-tasks/issues/17207\n - task: DownloadPipelineArtifact@2\n inputs:\n artifactName: 'NuGet_Packages'\n targetPath: '$(Pipeline.Workspace)/NuGet_Packages'\n displayName: Download Artifacts\n\n - template: templates/nuget-publish-dev.yml\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-publish-nuget-prod-dev.yml
.azure-devops-publish-nuget-prod-dev.yml
YAML
577
0.8
0
0.055556
react-lib
608
2025-03-06T16:46:52.514403
MIT
false
8db7cbf503f92c7e37ed21249d574423
jobs:\n- deployment: 'Nuget_Prod_Nuget_Org'\n displayName: 'Nuget Publish Prod NuGet.org'\n environment: 'Uno UI Production'\n pool:\n vmImage: ${{ parameters.vmImage }}\n\n strategy:\n runOnce:\n deploy:\n steps:\n - download: none\n\n # https://github.com/microsoft/azure-pipelines-tasks/issues/17207\n - task: DownloadPipelineArtifact@2\n inputs:\n artifactName: 'NuGet_Packages'\n targetPath: '$(Pipeline.Workspace)/NuGet_Packages'\n displayName: Download artifacts\n\n - template: templates/nuget-publish-public.yml\n\n- job: Tag_Release\n displayName: 'Set git tag'\n dependsOn: 'Nuget_Prod_Nuget_Org'\n\n pool:\n vmImage: ${{ parameters.vmImage }}\n\n steps:\n - checkout: self\n persistCredentials: true\n fetchDepth: 0\n\n - template: templates/gitversion.yml\n\n - script: |\n git config user.email "[email protected]"\n git config user.name "Uno DevOps"\n git tag $(NBGV_SimpleVersion)\n git push origin $(NBGV_SimpleVersion)\n displayName: "Tag and push to GitHub"\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-publish-nuget-prod.yml
.azure-devops-publish-nuget-prod.yml
YAML
1,065
0.8
0
0.029412
vue-tools
393
2024-10-08T07:49:09.691245
GPL-3.0
false
b1bd44fa0db6930f52b928536f27d0b8
parameters:\n vmImage: ''\n\njobs:\n\n- job: UITests_Screenshots_Compare\n displayName: 'UI Tests Screenshots Comparison'\n \n timeoutInMinutes: 90\n cancelTimeoutInMinutes: 1\n \n condition: or(succeeded(), and(failed(), ge(variables['System.StageAttempt'], 5)))\n\n pool: ${{ parameters.poolName }}\n\n\n variables:\n COMPARE_WORKDIR: $(Build.SourcesDirectory)\snapshot-compare\n\n steps:\n - checkout: self\n clean: true\n\n - template: templates/dotnet-install.yml\n\n - powershell: |\n dotnet build -c Release src/Uno.UI.TestComparer/Uno.UI.TestComparer.csproj /bl:$(build.artifactstagingdirectory)/test-comparer.binlog\n displayName: Build Test Comparer\n\n - script: |\n src\Uno.UI.TestComparer\bin\Release\Uno.UI.TestComparer.exe "azdo" --pat="$(UITestsCompare_PAT)" --base-path="$(COMPARE_WORKDIR)" --source-branch="%GIT_SOURCEBRANCH%" --target-branch="%GIT_TARGETBRANCH%" --artifact-name="uitests-results" --artifact-inner-path="uitests-results\screenshots" --definition-name="$(Build.DefinitionName)" --project-name="$(System.TeamProject)" --server-uri="$(System.TeamFoundationCollectionUri)" --current-build="$(Build.BuildId)" --run-limit="2" --github-pat="$(CommentsGitHubPAT)" --source-repository="$(system.pullRequest.sourceRepositoryUri)" --github-pr-id="$(system.pullRequest.pullRequestNumber)"\n\n env:\n GIT_TARGETBRANCH: "$(System.PullRequest.TargetBranch)"\n GIT_SOURCEBRANCH: "$(Build.SourceBranch)"\n\n displayName: 'Compare UI Tests screenshots'\n condition: and(eq(variables['Build.Repository.Provider'], 'GitHub'), not(startsWith(variables['Build.SourceBranch'], 'refs/heads/feature')))\n\n - task: PublishTestResults@2\n condition: always()\n inputs:\n testResultsFiles: '$(COMPARE_WORKDIR)\*.xml'\n testRunTitle: 'Screenshots Compare Test Run'\n testResultsFormat: 'NUnit'\n failTaskOnFailedTests: false\n\n - task: ArchiveFiles@2\n inputs:\n rootFolderOrFile: '$(COMPARE_WORKDIR)'\n includeRootFolder: true\n archiveType: 'zip'\n archiveFile: '$(Build.ArtifactStagingDirectory)/snapshot-compare-results-$(Build.BuildId).zip'\n condition: not(startsWith(variables['Build.SourceBranch'], 'refs/heads/feature'))\n\n - task: PublishBuildArtifacts@1\n retryCountOnTaskFailure: 3\n inputs:\n PathtoPublish: $(build.artifactstagingdirectory)\n ArtifactName: uitests-compare-results\n ArtifactType: Container\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-screenshot-compare.yml
.azure-devops-screenshot-compare.yml
YAML
2,398
0.7
0
0
awesome-app
372
2024-11-01T09:29:40.129235
GPL-3.0
false
4aeab9af10a73bbb5698fcb2bc26597f
steps:\n\n# Keep that version in sync with documentation at doc/README.md\n- bash: npm install -g [email protected]\n displayName: Install cSpell\n\n- bash: cspell --config ./build/cSpell.json "doc/**/*.md" "doc/**/toc.yml" --no-progress\n displayName: Run Spell Checking\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-spell-check.yml
.azure-devops-spell-check.yml
YAML
262
0.8
0
0.166667
vue-tools
508
2023-08-12T11:58:49.887714
MIT
false
e5800b136fff8333076c288545dc81c1
\nstages:\n- stage: Setup\n displayName: Setup\n jobs:\n - job: Validations\n \n pool:\n vmImage: $(linuxVMImage)\n\n variables:\n npm_config_cache: $(Pipeline.Workspace)/.npm\n\n steps:\n - checkout: self\n clean: true\n\n - task: Cache@2\n inputs:\n key: validation | $(Agent.OS) | $(Build.SourcesDirectory)/build/ci/**\n path: $(npm_config_cache)\n displayName: Cache npm packages\n\n - template: templates/gitversion-run.yml\n - template: .azure-devops-commitsar.yml\n - template: .azure-devops-spell-check.yml\n - template: .azure-devops-markdown-lint.yml\n\n- stage: docs_generation\n displayName: Docs Generation\n dependsOn: Setup\n jobs:\n - template: .azure-devops-docs.yml\n parameters:\n poolName: '$(windowsScaledPool)'\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-stages-docs.yml
.azure-devops-stages-docs.yml
YAML
781
0.8
0
0
vue-tools
537
2023-09-04T22:59:30.792613
BSD-3-Clause
false
d0e15b5ecc4ecd14aa08dd8bf83b461a
stages:\n- stage: Setup\n displayName: Setup\n jobs:\n - job: Validations\n \n pool:\n vmImage: $(linuxVMImage)\n\n variables:\n npm_config_cache: $(Pipeline.Workspace)/.npm\n\n steps:\n - checkout: self\n clean: true\n\n - task: Cache@2\n inputs:\n key: validation | $(Agent.OS) | $(Build.SourcesDirectory)/build/ci/**\n path: $(npm_config_cache)\n displayName: Cache npm packages\n\n - template: templates/gitversion-run.yml\n - template: .azure-devops-commitsar.yml\n - template: .azure-devops-spell-check.yml\n - template: .azure-devops-markdown-lint.yml\n\n- stage: binaries_build_native_macos\n displayName: Build native binaries\n dependsOn:\n - Setup\n\n jobs:\n - template: .azure-devops-package-skia-native-assets.yml\n parameters:\n UNO_UWP_BUILD: false\n XAML_FLAVOR_BUILD: WinUI\n macOSImageName: '$(macOSVMImage)'\n \n\n- stage: binaries_build_winui\n displayName: Build Binaries WinUI\n dependsOn:\n - binaries_build_native_macos\n\n jobs:\n - template: .azure-devops-package-netcoremobile.yml\n parameters:\n poolName: '$(windowsScaledPool)'\n UNO_UWP_BUILD: false\n XAML_FLAVOR_BUILD: WinUI\n\n- stage: packages_tests\n displayName: Test Packages\n dependsOn:\n - binaries_build_winui\n\n jobs: \n - template: .azure-devops-project-template-tests.yml\n parameters:\n poolName: '$(windowsScaledPool)'\n vmImageWindows: $(windows2022HostedVMImage)\n vmPoolLinux: '$(linuxScaledPool)'\n macOSImageName: '$(macOSVMImage)'\n xCodeRoot: '$(xCodeRoot)'\n\n- stage: unit_tests\n displayName: Tests - Unit\n dependsOn:\n - Setup\n\n jobs:\n\n - template: .azure-devops-unit-tests.yml\n parameters:\n poolName: '$(windowsScaledPool)'\n\n- stage: wasm_tests\n displayName: Tests - WebAssembly\n dependsOn:\n - Setup\n\n jobs:\n \n - template: .azure-devops-wasm-uitests.yml\n parameters:\n poolName: '$(linuxScaledPool)'\n\n- template: .azure-devops-skia-tests.yml\n parameters:\n vmImage: '$(windows2022HostedVMImage)'\n vmMacImage: '$(macOSVMImage)'\n vmMacImageTest: '$(macOSVMImage_UITests)'\n vmLinuxImage: '$(linuxVMImage)'\n vmLinuxPool: '$(linuxScaledPool)'\n poolName: '$(windowsScaledPool)'\n xCodeRootBuild: '$(xCodeRoot)'\n xCodeRootTest: '$(xCodeRoot_iOS_UITests)'\n UNO_UWP_BUILD: false\n XAML_FLAVOR_BUILD: WinUI\n\n- stage: android_tests\n displayName: Tests - Android\n dependsOn:\n - Setup\n\n jobs:\n - template: .azure-devops-android-tests.yml\n parameters:\n vmWindowsImage: '$(windows2019HostedVMImage)'\n vmLinuxImage: '$(linuxVMImage)'\n vmMacOSImage: '$(macOSVMImage)'\n vmLinuxPool: '$(linuxScaledPool)'\n xCodeRoot: '$(xCodeRoot)'\n \n- stage: ios_tests\n displayName: Tests - iOS\n dependsOn:\n - Setup\n\n jobs:\n - template: .azure-devops-ios-tests.yml\n parameters:\n vmImage: '$(macOSVMImage)'\n vmImageTest: '$(macOSVMImage_UITests)'\n xCodeRootBuild: '$(xCodeRoot)'\n xCodeRootTest: '$(xCodeRoot_iOS_UITests)'\n\n- stage: wasdk_tests\n displayName: Tests - WinAppSDK \n dependsOn:\n - Setup\n\n jobs:\n - template: .azure-devops-wasdk.yml\n parameters:\n poolName: '$(windows2022HostedVMImage)'\n\n- stage: test_finalization\n displayName: Tests - Results\n # This stage only run screenshot comparison, which is not relevant for unit tests and also uap_tests.\n dependsOn:\n - wasm_tests\n - ios_tests\n - android_tests\n - runtime_tests_skia_browser\n - runtime_tests_skia_android\n - runtime_tests_skia_ios\n - runtime_tests_skia_linux\n - runtime_tests_skia_windows\n\n jobs:\n - template: .azure-devops-screenshot-compare.yml\n parameters:\n poolName: '$(windowsScaledPool)'\n\n##\n## Publishing\n##\n- stage: Publish_Dev\n displayName: 'Publish Dev NuGet'\n condition: and(succeeded(), or(eq(variables['Build.SourceBranch'], 'refs/heads/master'), startsWith(variables['Build.SourceBranch'], 'refs/heads/feature')), not(eq(variables['build.reason'], 'PullRequest')))\n dependsOn: binaries_build_winui\n jobs:\n - template: .azure-devops-publish-nuget-dev.yml\n parameters:\n vmImage: '$(windows2022HostedVMImage)'\n\n- stage: Publish_Prod_Dev\n displayName: 'Publish Prod Dev NuGet'\n condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), not(eq(variables['build.reason'], 'PullRequest')))\n dependsOn: binaries_build_winui\n jobs:\n - template: .azure-devops-publish-nuget-prod-dev.yml\n parameters:\n vmImage: '$(windows2022HostedVMImage)'\n \n- stage: Publish_Prod_Public\n displayName: 'Publish Prod NuGet.org'\n condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), not(eq(variables['build.reason'], 'PullRequest')))\n dependsOn: Publish_Prod_Dev\n jobs:\n - template: .azure-devops-publish-nuget-prod.yml\n parameters:\n vmImage: '$(windows2022HostedVMImage)'\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-stages.yml
.azure-devops-stages.yml
YAML
4,886
0.8
0.005405
0.025806
vue-tools
464
2024-04-15T15:15:32.497131
BSD-3-Clause
false
ba74b0b738b282d628be7916cf7643f0
parameters:\n vmImage: ''\n\njobs:\n- job: WASDK_Build\n displayName: 'Build WinAppSDK Samples App'\n\n pool:\n vmImage: ${{ parameters.poolName }}\n\n variables:\n CombinedConfiguration: Release|AnyCPU\n CI_Build: true\n\n # Use pre-defined local nuget cache for restore\n NUGET_PACKAGES: 'C:\NugetPackages'\n\n steps:\n - checkout: self\n\n - template: templates/nuget-cache.yml\n parameters:\n nugetPackages: $(NUGET_PACKAGES)\n\n - template: templates/gitversion.yml\n - template: templates/dotnet-install.yml\n\n # Required until Uno.Xaml can build without all targets enabled\n - template: templates/jdk-setup.yml\n\n - task: MSBuild@1\n inputs:\n solution: src\SamplesApp\SamplesApp.Windows\SamplesApp.Windows.csproj\n msbuildLocationMethod: version\n msbuildVersion: latest\n msbuildArchitecture: x86\n # Using x64 to workaround this error:\n # ---\n # Microsoft.Build.Msix.Packaging.targets(1036,5): Error : Packaged .NET applications with an\n # app host exe cannot be ProcessorArchitecture neutral. Please specify a RuntimeIdentifier\n # or a Platform other than AnyCPU.\n # ---\n # NOTE: The error says to specify a RuntimeIdentifier *OR* platform other than AnyCPU.\n # We already specify RuntimeIdentifier=win-x64 in the build below. Still, the error pops up.\n msbuildArguments: /r /t:Publish /m /v:m /p:Configuration=Release /p:Platform=x64 /p:RuntimeIdentifier=win-x64 /p:BuildGraphics3DGLForWindows=true /p:GenerateAppxPackageOnBuild=true /detailedsummary /bl:$(build.artifactstagingdirectory)/build-wasdk.binlog\n clean: false\n restoreNugetPackages: false\n logProjectEvents: false\n createLogFile: false\n\n - task: CopyFiles@2\n condition: always()\n inputs:\n SourceFolder: $(build.sourcesdirectory)/src/SamplesApp/SamplesApp.Windows/bin/x64/Release/net8.0-windows10.0.19041.0/win-x64/AppPackages\n Contents: '**'\n TargetFolder: $(build.artifactstagingdirectory)\n CleanTargetFolder: false\n OverWrite: false\n flattenFolders: false\n\n - task: PublishBuildArtifacts@1\n condition: always()\n retryCountOnTaskFailure: 3\n inputs:\n PathtoPublish: $(build.artifactstagingdirectory)\n ArtifactName: WinAppSDK-Package\n ArtifactType: Container\n
dataset_sample\yaml\unoplatform_uno\build\ci\.azure-devops-wasdk.yml
.azure-devops-wasdk.yml
YAML
2,284
0.8
0.014925
0.178571
node-utils
16
2024-03-27T12:05:41.487254
GPL-3.0
false
4d0d592276f7b0813e17fc9c9545c5da
steps:\n - task: NodeTool@0\n displayName: "Install Node 14.7.1"\n inputs:\n versionSpec: "14.17.1"\n\n - bash: |\n cd "$(Build.SourcesDirectory)/doc/"\n npm install\n displayName: Install Dependencies\n\n - bash: |\n cd "$(Build.SourcesDirectory)/doc/"\n npm run build\n displayName: Build intermediary assets\n
dataset_sample\yaml\unoplatform_uno\build\ci\templates\docfx-intermediary-assets.yml
docfx-intermediary-assets.yml
YAML
337
0.7
0
0
node-utils
349
2024-04-21T16:08:40.654569
Apache-2.0
false
f07fb82d5d11313f13487f37cf039ceb