diff --git a/content/practice_tests/actions.md b/content/practice_tests/actions.md index 6d024042..fa81abb6 100644 --- a/content/practice_tests/actions.md +++ b/content/practice_tests/actions.md @@ -1,5 +1,5 @@ --- -title: "Github Actions Practice Test" +title: "GitHub Actions Practice Test" Description: "Free practice test for the GitHub Actions Certification Exam." date: 2023-08-19T11:04:20+02:00 draft: false diff --git a/content/practice_tests/admin.md b/content/practice_tests/admin.md index 7bce9761..19b02979 100644 --- a/content/practice_tests/admin.md +++ b/content/practice_tests/admin.md @@ -1,5 +1,5 @@ --- -title: "Github Administration Practice Test" +title: "GitHub Administration Practice Test" Description: "Free practice test for the GitHub Administration Certification Exam." date: 2023-09-21T15:42:00+02:00 draft: false diff --git a/content/practice_tests/advanced_security.md b/content/practice_tests/advanced_security.md index 29b13b51..baf018e7 100644 --- a/content/practice_tests/advanced_security.md +++ b/content/practice_tests/advanced_security.md @@ -1,5 +1,5 @@ --- -title: "Github Advanced Security Practice Test" +title: "GitHub Advanced Security Practice Test" Description: "Free practice test for the GitHub Advanced Security Certification Exam." date: 2023-09-21T15:42:20+02:00 draft: false diff --git a/content/practice_tests/foundations.md b/content/practice_tests/foundations.md index 65cc2efc..be688768 100644 --- a/content/practice_tests/foundations.md +++ b/content/practice_tests/foundations.md @@ -1,5 +1,5 @@ --- -title: "Github Foundations Practice Test" +title: "GitHub Foundations Practice Test" Description: "Free practice test for the GitHub Foundations Certification Exam." date: 2023-09-21T15:42:20+02:00 draft: false diff --git a/content/questions/actions/question-004.md b/content/questions/actions/question-004.md index 9eb28061..70390220 100644 --- a/content/questions/actions/question-004.md +++ b/content/questions/actions/question-004.md @@ -1,5 +1,5 @@ --- -question: "Are Github Actions free for public repositories?" +question: "Are GitHub Actions free for public repositories?" archetype: "questions" title: "Question 004" draft: false diff --git a/content/questions/actions/question-006.md b/content/questions/actions/question-006.md index b59e08cc..e7468449 100644 --- a/content/questions/actions/question-006.md +++ b/content/questions/actions/question-006.md @@ -12,5 +12,5 @@ draft: false - [ ] Workflows can only be run on a schedule - [ ] Workflow can run only one job at a time - [ ] Workflows are written in any of `.yaml`, `.json` or `.toml` formats -- [ ] Workflows can be shared in Github Marketplace - > Actions (not workflows) can be shared in Github Marketplace +- [ ] Workflows can be shared in GitHub Marketplace + > Actions (not workflows) can be shared in GitHub Marketplace diff --git a/content/questions/actions/question-032.md b/content/questions/actions/question-032.md index ba87dc8a..083869eb 100644 --- a/content/questions/actions/question-032.md +++ b/content/questions/actions/question-032.md @@ -1,5 +1,5 @@ --- -question: "What Github-hosted runner types are available to use? (Select three.)" +question: "What GitHub-hosted runner types are available to use? (Select three.)" archetype: "questions" title: "Question 032" draft: false diff --git a/content/questions/actions/question-036.md b/content/questions/actions/question-036.md index c1bec240..875564e3 100644 --- a/content/questions/actions/question-036.md +++ b/content/questions/actions/question-036.md @@ -17,5 +17,5 @@ draft: false > https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymax-parallel 1. [x] Set `jobs.example_matrix.strategy.max-parallel` to 2 1. [ ] Set `jobs.example_matrix.strategy.concurrency` to 2 -1. [ ] Use Github's REST API to check if the job count is lesser than 2 +1. [ ] Use GitHub's REST API to check if the job count is lesser than 2 1. [ ] It's not possible, a matrix will always run all of the jobs in parallel if there are runners available diff --git a/content/questions/actions/question-049.md b/content/questions/actions/question-049.md index 5224bea1..ce9ab114 100644 --- a/content/questions/actions/question-049.md +++ b/content/questions/actions/question-049.md @@ -8,9 +8,9 @@ draft: false > https://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization - [x] They allow users to leverage ready-to-use (or requiring minimal changes) workflow templates -- [x] Github provides and maintains starter workflows for different categories, languages and tooling +- [x] GitHub provides and maintains starter workflows for different categories, languages and tooling - [x] Your organization can create custom starter workflows for users in your organization - [ ] Starter workflows cannot call reusable workflows -- [ ] Starter workflows are a paid Github feature +- [ ] Starter workflows are a paid GitHub feature - [ ] Starter workflows are provided ready-to-use and cannot be modified or enhanced > https://docs.github.com/en/actions/using-workflows/using-starter-workflows#using-starter-workflows diff --git a/content/questions/actions/question-053.md b/content/questions/actions/question-053.md index 94d7601f..fb0f9283 100644 --- a/content/questions/actions/question-053.md +++ b/content/questions/actions/question-053.md @@ -1,5 +1,5 @@ --- -question: "When creating a custom Github Action you have to store the source code in `.github/workflows` directory" +question: "When creating a custom GitHub Action you have to store the source code in `.github/workflows` directory" archetype: "questions" title: "Question 053" draft: false diff --git a/content/questions/actions/question-054.md b/content/questions/actions/question-054.md index cfb8b0d7..f85cca4c 100644 --- a/content/questions/actions/question-054.md +++ b/content/questions/actions/question-054.md @@ -1,5 +1,5 @@ --- -question: "When creating custom Github Actions - in what file does all the action `metadata` have to be defined?" +question: "When creating custom GitHub Actions - in what file does all the action `metadata` have to be defined?" archetype: "questions" title: "Question 054" draft: false @@ -11,6 +11,6 @@ Metadata examples: name, description, outputs or required inputs 1. [x] In the `action.yml` or `action.yaml` file in the action repository 1. [ ] In the repository `README` file > While it's good practice to do that, it's not a requirement for the action to work -1. [ ] It's edited in Github Marketplace UI when published for sharing +1. [ ] It's edited in GitHub Marketplace UI when published for sharing 1. [ ] In the `action.yml` or `action.yaml` file in the action repository, but it is not required if the action is not meant to be shared and used by the public > All actions require the metadata file. diff --git a/content/questions/actions/question-056.md b/content/questions/actions/question-056.md index 802a2e90..1295d041 100644 --- a/content/questions/actions/question-056.md +++ b/content/questions/actions/question-056.md @@ -9,4 +9,4 @@ draft: false 1. [x] Using deployment protection rules 1. [ ] Setting the required reviewers in the `production` workflow 1. [ ] Using branch protection rules -1. [ ] Manual approvals are not supported by Github Actions +1. [ ] Manual approvals are not supported by GitHub Actions diff --git a/content/questions/actions/question-058.md b/content/questions/actions/question-058.md index fa81c8d0..9fbf5602 100644 --- a/content/questions/actions/question-058.md +++ b/content/questions/actions/question-058.md @@ -1,5 +1,5 @@ --- -question: "When using Github Actions to access resources in one of the cloud providers (such as AWS, Azure or GCP) the safest and recommended way to authenticate is" +question: "When using GitHub Actions to access resources in one of the cloud providers (such as AWS, Azure or GCP) the safest and recommended way to authenticate is" archetype: "questions" title: "Question 058" draft: false diff --git a/content/questions/advanced_security/question-096.md b/content/questions/advanced_security/question-096.md index c89c79d4..354d3342 100644 --- a/content/questions/advanced_security/question-096.md +++ b/content/questions/advanced_security/question-096.md @@ -1,7 +1,7 @@ --- archetype: "questions" title: "Question 096" -question: "Which API endpoint can be used to retrieve a list of all dependabot alerts for an enterprise?" +question: "Which API endpoint can be used to retrieve a list of all Dependabot alerts for an enterprise?" draft: false --- diff --git a/content/questions/advanced_security/question-115.md b/content/questions/advanced_security/question-115.md index 9e1613d3..675f46b4 100644 --- a/content/questions/advanced_security/question-115.md +++ b/content/questions/advanced_security/question-115.md @@ -1,7 +1,7 @@ --- archetype: "questions" title: "Question 115" -question: "Which dependabot comment command will get a pull request successfully completed?" +question: "Which Dependabot comment command will get a pull request successfully completed?" draft: false ---