diff --git a/.editorconfig b/.editorconfig index d53c0e8dded9..19fe6f5ad6ea 100644 --- a/.editorconfig +++ b/.editorconfig @@ -15,6 +15,9 @@ indent_size = 4 [*.rs] max_line_length = 100 +[*.{yml,yaml}] +indent_size = 2 + [*.md] # double whitespace at end of line # denotes a line break in Markdown diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index c09692004075..ee2646490db5 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -5,4 +5,4 @@ contact_links: about: Please ask and answer questions here to keep the issue tracker clean. - name: Security url: mailto:georgios@paradigm.xyz - about: Please report security vulnerabilities here. \ No newline at end of file + about: Please report security vulnerabilities here. diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 2e33e3bc6ee3..005c33ae3faa 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -11,7 +11,7 @@ body: label: Describe the feature description: | Please describe the feature and what it is aiming to solve, if relevant. - + If the feature is for a crate, please include a proposed API surface. validations: required: true diff --git a/.github/workflows/assertoor.yml b/.github/workflows/assertoor.yml index 3d1ee58c4800..becbf4a3a59b 100644 --- a/.github/workflows/assertoor.yml +++ b/.github/workflows/assertoor.yml @@ -29,7 +29,7 @@ jobs: id: services run: | export github_sha=${{ github.sha }} - export github_repository=${{ github.repository }} + export github_repository=${{ github.repository }} cat etc/assertoor/assertoor-template.yaml | envsubst > etc/assertoor/assertoor.yaml @@ -92,7 +92,7 @@ jobs: elif [ "$task_result" == "failure" ]; then task_result="${RED}failure${NC}" fi - + echo -e " $(printf '%-4s' "$task_id")\t$task_status\t$task_result\t$(printf '%-50s' "$task_graph$task_name") \t$task_title" done <<< $(echo "$tasks") } @@ -153,7 +153,7 @@ jobs: echo "$task_lines" fi - if [ $failed_tests -gt 0 ]; then + if [ $failed_tests -gt 0 ]; then final_test_result="failure" break fi @@ -197,7 +197,7 @@ jobs: with: name: "kurtosis-enclave-dump-${{ github.run_id }}" path: ./temp/dump - + - name: Return test result shell: bash run: | @@ -227,4 +227,3 @@ jobs: exit 1 # fail action fi - diff --git a/.github/workflows/label-pr.yml b/.github/workflows/label-pr.yml index e52721b9cc83..857d354a8fb8 100644 --- a/.github/workflows/label-pr.yml +++ b/.github/workflows/label-pr.yml @@ -21,4 +21,3 @@ jobs: script: | const label_pr = require('./.github/scripts/label_pr.js') await label_pr({github, context}) -